/* ===============================
   FONT FACE - ROBOTO CONDENSED
================================ */

@font-face {
  font-family: "Roboto-Light";
  src: url("../fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-Reg";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-Med";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-SemiBold";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-ExtraBold";
  src: url("../fonts/Roboto-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-Black";
  src: url("../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Font Family */
--font-SemiBold: 'Roboto-SemiBold', sans-serif;
  --font-bold: 'Roboto-Bold', sans-serif;
  --font-med: 'Roboto-Med', sans-serif;
  --font-reg: 'Roboto-Reg', sans-serif;
  --font-light: 'Roboto-Light', sans-serif;
  /* Aliases used across the sheet */
  --font-head: 'Roboto-Bold', sans-serif;
  --font-body: 'Roboto-Reg', sans-serif;
  /* Font Weights */
  --rbh-font-light: 300;
  --rbh-font-regular: 400;
  --rbh-font-medium: 500;
  --rbh-font-semibold: 600;
  --rbh-font-bold: 700;
  --rbh-font-extrabold: 800;
  --rbh-font-black: 900;

  /* Colors */
  --rbh-blue: #245775;
  --rbh-blue-dark: #07384d;
  --rbh-green: #94B335;
  --rbh-light: #f4f6f7;
  --rbh-text: #12384a;
  --rbh-muted: #737373;
  --rbh-white: #ffffff;
  --rbh-border: #d8e3e8;
  --rbh-radius: 8px;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
   font-family: var(--rbh-font-main);
  font-weight: var(--rbh-font-regular);
  color: var(--rbh-text);
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.rbh-container {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}


h1, h2, h3 {
    font-family: var(--font-bold);
}

h4, h5, h6, div, li, p {
    font-family: var(--font-reg);
}


/* ===============================
   HEADER / NAVBAR
================================ */

:root {
  --rbh-blue: #245775;
  --rbh-green: #94B335;
  --rbh-text: #245775;
  --rbh-white: #ffffff;
}

/* Fix Splash Screen Modal */
.SplashScreenModal {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
}

    .SplashScreenModal .modal-dialog {
        max-width: 80%;
        width: auto;
        margin: 1.75rem auto;
        display: flex;
        align-items: center;
        min-height: calc(100% - 3.5rem);
    }

    .SplashScreenModal .modal-content {
        background: transparent;
        border: none;
        box-shadow: none;
        width: 100%;
    }

    .SplashScreenModal .modal-body.SplashScreen {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 400px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 0;
    }

    /* Center the modal vertically */
    .SplashScreenModal.show .modal-dialog {
        transform: translate(0, 0);
    }

    .SplashScreenModal .btn-close {
        position: absolute;
        right: 15px;
        top: 10px;
    }

.white-link:hover {
    color: white;
}

.rbh-container {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
}

.rbh-library-search .bold-font {
    display: none !important;
}

.rbh-library-search .form-control {
    margin-top: 0 !important;
}
/* Make the filter row display as flex/grid horizontally */
.rbh-library-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

/* Make search input take appropriate width */
.rbh-library-search {
    flex: 1;
    min-width: 250px;
}

/* Make dropdowns consistent width */
.rbh-filter-dropdown {
    flex: 0 0 auto;
    min-width: 180px;
}

.rbh-header {
  width: 100%;
  height: 84px;
  background: var(--rbh-white);
  border-bottom: 1px solid rgba(8, 62, 84, 0.08);
  position: relative;
  z-index: 999;
}

.rbh-container {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.rbh-header-inner {
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 70px;
}

/* Logo */

.rbh-logo {
  display: inline-flex;
  align-items: center;
}

.rbh-logo img {
  width: 160px;
  height: auto;
  display: block;
}

/* Navigation */

.rbh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  height: 100%;
}

.rbh-nav > a,
.rbh-nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 84px;
  color: var(--rbh-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
font-family: var(--font-reg);
}

.rbh-nav > a:hover,
.rbh-nav > a.active,
.rbh-nav-item > a:hover {
  color: var(--rbh-blue);
}

/* Dropdown Arrow */

.dropdown-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--rbh-blue);
  border-bottom: 2px solid var(--rbh-blue);
  transform: rotate(45deg);
  margin-top: -5px;
  transition: transform 0.25s ease;
}

.rbh-nav-item:hover .dropdown-arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* Dropdown */

.rbh-nav-item {
  position: relative;
  height: 84px;
  display: flex;
  align-items: center;
}

.rbh-dropdown {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: #ffffff;
  border: 1px solid rgba(8, 62, 84, 0.08);
  box-shadow: 0 14px 35px rgba(8, 62, 84, 0.12);
  border-radius: 0 0 12px 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.rbh-dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--rbh-blue);
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s ease;
  white-space: nowrap;
}

.rbh-dropdown a:hover {
      background: #94b3351a;
    color: var(--rbh-green);
}

.rbh-nav-item:hover .rbh-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-16%) translateY(0px);
}
.rbh-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}
/* Right Actions */

.rbh-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.rbh-lang {
  color: var(--rbh-blue);
  font-size: 15px;
  text-decoration: none;
  line-height: 1;
}

.rbh-header-separator {
  width: 1px;
  height: 29px;
  background: rgba(8, 62, 84, 0.55);
}

.rbh-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rbh-blue);
  font-size: 17px;
  text-decoration: none;
}

.rbh-search-icon {
 
  width: 19px;
  height: 19px;
 
}




/* ================= BUTTONS ================= */

.rbh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 44px;
  padding: 10px 24px 10px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s ease;
  white-space: nowrap;
  font-family: var(--font-med);
}

.rbh-btn-green {
  background: var(--rbh-green);
  color: #ffffff;
}

.rbh-btn-green:hover {
  background: #88b42f;
}

.rbh-btn-blue {
  background: var(--rbh-blue);
  color: #ffffff;
}

.rbh-btn-blue:hover {
    color: var(--rbh-white);
}

.rbh-btn-blue span {
    transform: scaleX(-1);
}



.rbh-btn-outline-blue {
  color: var(--rbh-blue);
  border: 1px dashed var(--rbh-blue);
  background: transparent;
}

.rbh-btn-outline-blue:hover {
  background: var(--rbh-blue);
  color: #ffffff;
}

.rbh-btn-outline-light {
  border: 1px dashed #ffffff;
  color: #ffffff;
  background: transparent;
}

.rbh-btn-outline-light:hover {
  background: #ffffff;
  color: var(--rbh-blue);
}

/* ===============================
   HERO SECTION
================================ */

:root {
  --rbh-blue: #245775;
  --rbh-green: #94B335;
  --rbh-white: #ffffff;
}

.rbh-hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 84px);
  min-height: 720px;
  overflow: hidden;
  background: var(--rbh-blue);
}

.rbh-hero-slide {
   position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  z-index: 0;
  filter: none;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 1.2s ease;
}

.rbh-hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.rbh-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}
.rbh-hero-slide::before,
.rbh-hero-slide::after {
  display: none;
}
/* Content */

.rbh-hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  height: 100%;
  padding-top: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rbh-hero-content h1 {
  margin: 0 0 0px;
  color: var(--rbh-white);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 1px;
  font-family: var(--font-bold);
}

.rbh-hero-content p {
 color: rgba(255, 255, 255, 0.75);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: var(--font-reg);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
margin-bottom: 40px;
width: 55rem;
}

@media(max-width: 880px) {
    .rbh-hero-content p{
        width: 35rem;
    }
}

@media(max-width: 576px) {
    .rbh-hero-content p {
        width: 22rem;
    }
}

/* Button */

.rbh-hero-btn {
  min-width: 267px;
    height: 44px;
    padding: 10px 24px 10px 36px;
  border-radius: 999px;
  background: var(--rbh-green);
  color: #EFF0EF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
font-family: var(--font-med);
}

.rbh-hero-btn:hover {
  background: #91b52d;
  transform: translateY(-2px);
}

.rbh-hero-btn span {
  font-size: 18px;
  line-height: 1;
}

.rbh-hero-btn span img {
    transform: scaleX(-1);
}

/* Social Side */

.rbh-hero-social {
  position: absolute;
  /*left: 47px;*/
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.rbh-hero-social > span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 400;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  letter-spacing: 0.5px;
}

.rbh-hero-social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rbh-hero-social-icons a {
  width: 20px;
  height: 20px;
  color: var(--rbh-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
  transition: 0.25s ease;
}

.rbh-hero-social-icons a:hover {
  color: var(--rbh-green);
  transform: translateY(-2px);
}

/* Dots */

.rbh-hero-dots {
  position: absolute;
  /*right: 58px;*/
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  pointer-events: auto;
}

.rbh-hero-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
  pointer-events: auto;
}

.rbh-hero-dots button.active {
  width: 11px;
  height: 11px;
  background: var(--rbh-white);
  border-color: var(--rbh-white);
}

.rbh-hero-dots button:hover {
  border-color: var(--rbh-white);
  background: rgba(255, 255, 255, 0.45);
}
.rbh-hero-dots {
  position: absolute;
  left: 58px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 9px;
  pointer-events: auto;
}

@media (max-width: 1200px) {
    .rbh-hero-dots {
        right: auto !important;
    }
}

@media (max-width: 880px) {
    .rbh-hero-dots {
        left: 2rem !important;
        right: auto !important;
    }
}

@media (max-width: 576px) {
    .rbh-hero-dots {
        left: 2rem !important;
        right: auto !important;
    }
}

@media (max-width: 376px) {
    .rbh-hero-dots {
        left: 1rem !important;
        right: auto !important;
    }
}

.rbh-hero-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.rbh-hero-dots button.active {
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-color: #ffffff;
}

.rbh-hero-overlay {
  pointer-events: none;
}
/* ===============================
   HERO SOCIAL HOVER TOOLTIP
================================ */

.rbh-hero-social {
  position: absolute;
  right: 47px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

@media (max-width: 1200px) {
    .rbh-hero-social {
        left: auto !important
    }
}

@media (max-width: 880px) {
    .rbh-hero-social {
        right: 2rem !important;
        left: auto !important
    }
}

@media (max-width: 576px) {
    .rbh-hero-social {
        right: 2rem !important;
        left: auto !important;
    }
}

@media (max-width: 376px) {
    .rbh-hero-social {
        right: 1rem !important;
        left: auto !important;
    }
}

.rbh-hero-social > span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 400;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  letter-spacing: 0.5px;
  font-family: var(--font-reg);
}

.rbh-hero-social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rbh-hero-social-icons a {
  position: relative;
  width: 24px;
  height: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
  transition: 0.25s ease;
}

/* Circle background on hover */
.rbh-hero-social-icons a:hover {
  color: #ffffff;
  background: #9fc63b;
  border-radius: 6px;
  transform: translateY(-1px);
}

/* Tooltip box */
.rbh-hero-social-icons a::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 17px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  min-width: max-content;
  height: 26px;
  padding: 0 13px;
  border-radius: 4px;
  background: #ffffff;
  color: #9fc63b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(8, 62, 84, 0.12);
  transition: 0.25s ease;
  font-family: var(--font-reg);
}

/* Tooltip arrow */
.rbh-hero-social-icons a::before {
  content: "";
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px) scaleX(-1);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 9px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

/* Show tooltip */
.rbh-hero-social-icons a:hover::after,
.rbh-hero-social-icons a:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.rbh-hero-social-icons a:hover::before {
    transform: translateY(-50%) translateX(0) scaleX(-1);
}


/* ================= ABOUT ================= */

.rbh-about {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.rbh-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.rbh-about-content {
  min-width: 0;
}

.rbh-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--rbh-green);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-med);
}

.rbh-section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--rbh-green);
  flex-shrink: 0;
}

.rbh-about h2 {
  margin: 0 0 24px;
  color: var(--rbh-blue);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  font-family: var(--font-bold);
}

.rbh-about p {
  color: var(--rbh-muted);
  font-size: 16px;
  /*line-height: 1.8;*/
  margin: 0 0 24px;
  font-family: var(--font-reg);
}

.rbh-check-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.rbh-check-list li {
  display: flex;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--rbh-blue);
  font-family: var(--font-reg);
  font-weight: 400;
  gap: 12px;
}



.rbh-about-visual {
  width: 100%;
  min-width: 0;
}

.rbh-about-visual img {
width: 100%;
    height: 354px;
    object-fit: cover;
    border-radius: 8px;
}

.rbh-counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 40px;
  text-align: center;
}

.rbh-counters div {
  min-width: 0;
}

.rbh-counters div strong,
.rbh-counters div span {
  color: var(--rbh-blue);
  font-size: 48.3956px;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-med);
}

.rbh-counters p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--rbh-blue);
  font-weight: 400;
  font-family: var(--font-reg);
}



/* ===============================
   SERVICES SECTION
================================ */

:root {
  --rbh-blue: #245775;
  --rbh-green: #94B335;
  --rbh-text: #245775;
  --rbh-muted: #737373;
  --rbh-white: #ffffff;
  --rbh-section-bg: #f5f5f5;
}

.rbh-services-section {
  width: 100%;
  padding: 80px 0;
  background: var(--rbh-section-bg);
  overflow: hidden;
}

.rbh-container {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
}

.rbh-services-wrapper {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

/* ===============================
   LEFT CONTENT
================================ */

.rbh-services-content {
  padding-top: 0;
}

.rbh-section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rbh-green);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 40px;
}

.rbh-section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--rbh-green);
  display: inline-block;
}

.rbh-services-content h2 {
  margin: 0 0 24px;
  color: var(--rbh-blue);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  /*letter-spacing: 2px;*/
  font-family: var(--font-bold);
}

.rbh-services-content p {
  width: 299px;
  margin: 0 0 40px;
  color: var(--rbh-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 124%;
  /*letter-spacing: 1px;*/
  
  font-family: var(--font-reg);
}

.rbh-services-main-btn {
  width: 213px;
  height: 44px;
  border-radius: 999px;
  background: var(--rbh-blue);
  color: var(--rbh-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.25s ease;
  font-family: var(--font-med);
}

.rbh-services-main-btn:hover {
  background: var(--rbh-green);
  color: var(--rbh-white);

 
}

.rbh-services-main-btn span {
    transform: scaleX(-1);
}

/* ===============================
   CAROUSEL AREA
================================ */

.rbh-services-carousel-area {
  position: relative;
  min-width: 0;
  width: 100%;
  min-height: 480px;
}

.rbh-services-carousel {
  width: 100%;
  max-width: 100%;
}

.rbh-services-carousel .owl-stage-outer {
  overflow: hidden;
  width: 100%;
  min-height: 480px;
}

.rbh-services-carousel .owl-stage {
  display: flex;
  align-items: flex-start;
}

.rbh-services-carousel .owl-item {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
  overflow: visible;
}

.rbh-services-carousel .owl-item > div {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
}

/* Hide Owl Default Controls */
.rbh-services-carousel .owl-nav,
.rbh-services-carousel .owl-dots {
  display: none;
}

/*.owl-stage-outer {
    direction:ltr;
}*/

/* ===============================
   SERVICE CARDS
================================ */

.rbh-service-card {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-width: 100%;
  height: 360px;
  flex: 0 0 100%;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--rbh-white);
  box-sizing: border-box;

  /* Important fixes */
  transition: none !important;
  transform: none !important;
}

.rbh-service-card.is-first-visible {
  height: 480px;
}

.rbh-service-card.is-second-visible {
  height: 360px;
}

/* Blue Overlay */
.rbh-service-overlay {
  position: absolute;
  inset: 0;
 
  z-index: 1;
  pointer-events: none;
}

/* Number */
.rbh-service-number {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.14);
  font-size: 110.7347px;
  font-weight: 600;
  line-height: 124%;
  letter-spacing: -4px;
  pointer-events: none;
  font-family: var(--font-med);
}

/* Card Content */
.rbh-service-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 0 26px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.rbh-service-card-content h3 {
  margin: 0 0 8px;
  color: var(--rbh-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  font-family: var(--font-med);
}

/* Hidden by default to avoid appearing in the small card */
.rbh-service-card-content p {
  display: none;
  margin: 0 0 28px;
  color: rgba(212, 212, 212, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.3px;
  font-family: var(--font-reg);
}

/* Description appears only on first visible card */
.rbh-service-card.is-first-visible .rbh-service-card-content p {
  display: block;
}

/* Card Button */
.rbh-service-card-btn {
  min-width: 172px;
  height: 44px;
  padding: 10px 24px 10px 36px;
  border-radius: 999px;
  border: 1px solid var(--rbh-white);
  color: var(--rbh-white);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.25s ease;
  font-family: var(--font-med);
}

.rbh-service-card-btn span {
    transform: scaleX(-1);
}

.rbh-service-card-btn:hover {
  background: var(--rbh-green);
  color: var(--rbh-white);
  border: none;
}

/* ===============================
   CUSTOM ARROWS
================================ */

.rbh-services-arrows {
  position: absolute;
  left: 0;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 10;
}

@media (max-width: 768px) {
    .rbh-services-arrows {
        right: 0 !important;
        left: auto !important;
    }
}

.rbh-services-arrows button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--rbh-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.rbh-services-next:hover{
  background: var(--rbh-green);
  color: var(--rbh-white);
  border: none;
}

.rbh-services-next {
  background: var(--rbh-blue);
  color: var(--rbh-white) ;
}

.rbh-services-prev {
    transform: scaleX(-1);
}

.rbh-services-next {
    transform: scaleX(-1);
}
/* ===============================
   NEWS SECTION
================================ */
:root {
    --rbh-blue: #245775;
    --rbh-green: #94B335;
    --rbh-muted: #737373;
    --rbh-white: #ffffff;
    --rbh-light-bg: #ffffff;
}

.rbh-news-section {
  width: 100%;
  padding: 80px 0;
  background: var(--rbh-light-bg);
}

.rbh-container {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
}

/* Header */

.rbh-news-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.rbh-news-heading {
  max-width: 650px;
}

.rbh-section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rbh-green);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

.rbh-section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--rbh-green);
  display: inline-block;
}

.rbh-news-heading h2 {
  margin: 0 0 24px;
  color: var(--rbh-blue);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  /*letter-spacing: 2px;*/
  font-family: var(--font-bold);
}

.rbh-news-heading p {
  width: 560px;
  max-width: 100%;
  margin: 0;
  color: var(--rbh-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: 0;
  font-family: var(--font-reg);
}

/* View All Button */

.rbh-news-view-btn {
  width: 193px;
  height: 44px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--rbh-blue);
  color: var(--rbh-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s ease;
  flex-shrink: 0;
}

    .rbh-news-view-btn:hover {
        background: var(--rbh-green);
        color: var(--rbh-white);
    }

.rbh-news-view-btn span {
    transform: scaleX(-1);
}
/* Layout */
.rbh-news-grid {
    display: grid;
    grid-template-columns: 505px minmax(0, 1fr);
    gap: 0px 54px;
    align-items: start;
    grid-template-rows: auto;
}

.rbh-news-main-card {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.rbh-news-side-list {
    grid-column: 2;
}

/* Main News */

.rbh-news-main-card {
  width: 100%;
}

.rbh-news-main-img {
  display: block;
  width: 100%;
  height: 310px;
  overflow: hidden;
  margin-bottom: 24px;
}

.rbh-news-main-img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}


.rbh-news-main-content h3 {
  margin: 0 0 8px;
  color: var(--rbh-blue);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -2%;
  font-family: var(--font-med);
}

@media (min-width: 993px) {
    .rbh-news-main-content h3 {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.rbh-news-main-content h3 a {
  color: inherit;
  text-decoration: none;
}

.rbh-news-main-content h3 a:hover {
  color: #0b5c7c;
}

.rbh-news-main-content p {
  margin: 0 0 8px;
  color: var(--rbh-muted);
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -2%;
  font-weight: 400;
  font-family: var(--font-reg);
}

.rbh-news-date {
  margin: 0 0 24px;
  display: block;
   color: #0F0F0F;
font-family: var(--font-reg);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 21px */
letter-spacing: -0.28px;
  opacity: 0.4;
  align-self: stretch;
}

/* Side News */

.rbh-news-side-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rbh-news-side-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
}

.rbh-news-side-img {
  display: block;
  width: 240px;
  height: 160px;
  overflow: hidden;
}

.rbh-news-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}



.rbh-news-side-content {
  padding-top: 9px;
}

.rbh-news-side-content h3 {
  margin: 0 0 8px;
  color: var(--rbh-blue);

font-family: var(--font-med);
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 28px */
letter-spacing: -0.4px;
}

@media (min-width: 993px) {
    .rbh-news-side-content h3 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.rbh-news-side-content h3 a {
  color: inherit;
  text-decoration: none;
}

.rbh-news-side-content h3 a:hover {
  color: #0b5c7c;
}

.rbh-news-side-content .rbh-news-date {
  margin-bottom: 18px;
}

/* Read More Button */

.rbh-news-read-btn {
  min-width: 168px;
  height: 44px;
  padding: 10px 24px 10px 36px;
  border-radius: 999px;
  border: 1px solid var(--rbh-blue);
  color: var(--rbh-blue);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-med);
  letter-spacing: 0%;
}

.rbh-news-read-btn:hover {
  background: var(--rbh-green);
  color: var(--rbh-white);
  border:none;
}
.rbh-news-read-btn:hover img {
  filter: brightness(0) invert(1);
}

.rbh-news-read-btn span{
    transform: scaleX(-1);
}

/* ===============================
   TOOLS SECTION
================================ */

:root {
  --rbh-blue: #245775;
  --rbh-green: #94B335;
  --rbh-muted: #737373;
  --rbh-white: #ffffff;
  --rbh-tools-bg: #f5f5f5;
  --rbh-border: #bcc9d1;
}

.rbh-tools-section {
  width: 100%;
  padding: 80px 0;
  background: var(--rbh-tools-bg);
}

.rbh-container {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
}

/* ===============================
   HEADING
================================ */

.rbh-tools-heading {
  width: min(850px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.rbh-tools-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--rbh-green);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: var(--font-med);
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 124%; /* 29.76px */
}

.rbh-tools-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--rbh-green);
  display: inline-block;
}

.rbh-tools-heading h2 {
  margin: 0 0 20px;
  color: var(--rbh-blue); 
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: var(--font-bold);
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 48px */
}

.rbh-tools-heading p {
  width: min(602px, 100%);
  margin: 0 auto 24px;
  color: #737373;
text-align: center;
font-family: var(--font-reg);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}

.rbh-tools-view-btn {
  min-width: 191px;
  height: 44px;
  padding: 10px 26px 10px 36px;
  border-radius: 999px;
  background: var(--rbh-blue);
  color: var(--rbh-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.25s ease;
  gap: 6px;
  font-family: var(--font-med);
  line-height: 124%;
  letter-spacing: 0%;
}

.rbh-tools-view-btn:hover {
  background: var(--rbh-green);
  color: var(--rbh-white);
  
}

.rbh-tools-view-btn span {
    transform: scaleX(-1)
}

/* ===============================
   CARDS
================================ */

.rbh-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 650px) {
    .rbh-tools-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
}

@media (max-width: 650px) {
    .rbh-tool-card {
        width: 100% !important;
        min-height: auto !important;
        padding: 28px 22px 30px !important;
    }
}
.rbh-tool-card {
  
width: 294px;
padding: 40px 24px;
align-items: flex-start;
gap: 10px;
border-radius: 8px;
border: 1px solid rgba(54, 93, 134, 0.30);
background: #FFF;
min-height: 350px;
margin: auto;
}

.rbh-tool-card:hover {
  border-radius: 8px;
border-bottom: 8px solid  #94B335;
background: #FFF;
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
border-top: none;
border-right: none;
border-left: none;
}

.rbh-tool-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #f0f3f4;
  color: var(--rbh-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rbh-tool-icon img {
  width: 22px;
  height: 22px;
}

.rbh-tool-card h3 {
  margin: 0 0 8px;
  color: var(--rbh-blue);
  font-family: var(--font-med);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px; /* 135% */
}

.rbh-tool-card p {
  min-height: 45px;
  margin: 0 0 40px;
  color: #64748B;
  font-family: var(--font-reg);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px; /* 160% */
}

.rbh-tool-btn {
  min-width: 172px;
  height: 44px;
  margin-top: auto;
  border-radius: 999px;
  border: 1px solid var(--rbh-blue);
  color: var(--rbh-blue);
  background: transparent;
 display: flex;
padding: 10px 24px 10px 36px;
justify-content: center;
align-items: center;
gap: 6px;
text-align: center;
font-family: var(--font-med);
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 124%; /* 19.84px */
}

.rbh-tool-btn:hover {
  background: var(--rbh-green);
  color: var(--rbh-white);
  border: none;
}
.rbh-tool-btn:hover img {
  filter: brightness(0) invert(1);
}

.rbh-tool-btn span {
    transform: scaleX(-1);
}



/* ===============================
   PARTNERS SECTION
================================ */

:root {
  --rbh-blue: #245775;
  --rbh-white: #ffffff;
}

.rbh-partners-section {
  width: 100%;
  padding: 38px 0 42px;
  background: var(--rbh-blue);
  overflow: hidden;
}

.rbh-container {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
}

.rbh-partners-section h2 {
  margin: 0 0 24px;
  color: #EEEDF6;

text-align: center;
font-family: var(--font-med);
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 28.5px; /* 118.75% */
letter-spacing: -0.2px;
}

.rbh-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: nowrap;
}

.rbh-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 54px;
  flex: 0 0 auto;

 
}


.rbh-partner-logo img {
  max-width: 120px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* لو الشعارات عندك ملونة وتريد تحويلها لأبيض */
.rbh-partner-logo.logo-filter-white img {
  filter: brightness(0) invert(1);
}


/* ===============================
   FOOTER
================================ */

:root {
  --rbh-blue: #245775;
  --rbh-green: #94B335;
  --rbh-text: #245775;
  --rbh-white: #ffffff;
  --rbh-footer-bg: #ffffff;
}

.rbh-footer {
  width: 100%;
  background: var(--rbh-footer-bg);
  color: var(--rbh-blue);
}

.rbh-container {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
}

/* ===============================
   FOOTER MAIN
================================ */

.rbh-footer-main {
  padding: 80px 0;
}

.rbh-footer-grid {
  display: grid;
  grid-template-columns: 320px 370px 330px;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

/* ===============================
   ABOUT
================================ */

.rbh-footer-logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.rbh-footer-logo img {
  width: 184px;
  height: auto;
  display: block;
}

.rbh-footer-about p {
  width: 304px;
  max-width: 100%;
  margin: 0 0 28px;
  color: var(--rbh-blue);
font-family: var(--font-reg);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.rbh-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rbh-footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--rbh-blue);
  color: var(--rbh-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: 0.25s ease;
}


/* ===============================
   LINKS
================================ */

.rbh-footer h3 {
  margin: 0 0 24px;
  color: var(--rbh-blue);
font-family:var(--font-bold);
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 35px; /* 145.833% */
}

.rbh-footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.rbh-footer-links-grid ul,
.rbh-footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contactus {
    direction: ltr;
}

li:last-child .contactus {
    direction: rtl;
}

.rbh-footer-links-grid li {
  margin-bottom: 4px;
}

.rbh-footer-links-grid a {
  color: var(--rbh-blue);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  Line-height:100%;

Letter-spacing:0%;
  font-family: var(--font-reg);
}

.rbh-footer-links-grid a:hover {
  color: var(--rbh-green);
}

/* ===============================
   CONTACT
================================ */

.rbh-footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.rbh-footer-contact li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--rbh-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  font-family: var(--font-reg);
}

.rbh-footer-contact li a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}

.rbh-footer-contact li a:hover {
  color: var(--rbh-green);
}

.rbh-contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--rbh-blue);
  color: var(--rbh-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rbh-contact-icon img{
  width: auto;
  height: auto;
}

li:last-child .rbh-contact-icon {
    margin-bottom: 28px;
}

/* ===============================
   FOOTER BOTTOM
================================ */

.rbh-footer-bottom {
  width: 100%;
  min-height: 42px;
  background: var(--rbh-blue);
  color: var(--rbh-white);
}

.rbh-footer-bottom-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.rbh-footer-bottom p {
  margin: 0;
  color: var(--rbh-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-reg);
}

.rbh-footer-bottom a {
  color: var(--rbh-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.25s ease;
}

.rbh-footer-bottom a:hover {
  color: var(--rbh-green);
}

/* ===============================
   SEARCH TRIGGER IN HEADER
================================ */

.rbh-search-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  
  color: #245775;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--font-reg);
}



.rbh-search-icon {
 
  width: 19px;
  height: 19px;

}



/* ===============================
   SEARCH OVERLAY
================================ */

.rbh-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.rbh-search-overlay.is-open {
  display: block;
}

.rbh-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 62, 84, 0.72);
  backdrop-filter: blur(5px);
}

.rbh-search-box {
  position: relative;
  width: min(820px, calc(100% - 32px));
  margin: 120px auto 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 46px 48px 38px;
  box-shadow: 0 28px 70px rgba(8, 62, 84, 0.28);
  animation: rbhSearchIn 0.32s ease forwards;
}

@keyframes rbhSearchIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close Button */

.rbh-search-close {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 62, 84, 0.2);
  border-radius: 50%;
  background: #ffffff;
  color: #245775;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rbh-search-close:hover {
  background: #245775;
  color: #ffffff;
}

/* Head */

.rbh-search-box-head {
  text-align: center;
  margin-bottom: 34px;
}

.rbh-search-box-head span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #94B335;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.rbh-search-box-head span::before {
  content: "";
  width: 27px;
  height: 1px;
  background: #94B335;
}

.rbh-search-box-head h2 {
  margin: 0 0 12px;
  color: #245775;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.rbh-search-box-head p {
  width: min(560px, 100%);
  margin: 0 auto;
  color: #737373;
  font-size: 16px;
  line-height: 1.5;
}

/* Form */

.rbh-search-form {
  width: 100%;
}

.rbh-search-input-wrap {
  width: 100%;
  min-height: 64px;
  border: 1.5px solid rgba(8, 62, 84, 0.25);
  border-radius: 999px;
  background: #f8fafb;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 24px;
  transition: 0.25s ease;
}

.rbh-search-input-wrap:focus-within {
  border-color: #245775;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 62, 84, 0.08);
}

.rbh-search-input-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #245775;
  border-radius: 50%;
  margin-right: 15px;
}

.rbh-search-input-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #245775;
  right: -7px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 5px;
}

.rbh-search-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #245775;
  font-size: 18px;
  font-family: inherit;
  margin-right: 12px;
}

.rbh-search-input-wrap input::placeholder {
  color: rgba(8, 62, 84, 0.48);
}

.rbh-search-input-wrap button {
  min-width: 144px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #245775;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: 0.25s ease;
  margin-left: -10px
}

.rbh-search-input-wrap button:hover {
  background: #94B335;
}

.rbh-search-input-wrap a {
    min-width: 144px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #245775;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: 0.25s ease;
    margin-left: -15px
}

    .rbh-search-input-wrap a:hover {
        background: #94B335;
    }

/* Suggestions */

.rbh-search-suggestions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rbh-search-suggestions span {
  color: #737373;
  font-size: 14px;
}

.rbh-search-suggestions a {
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(8, 62, 84, 0.22);
  color: #245775;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

.rbh-search-suggestions a:hover {
  background: #245775;
  color: #ffffff;
}

/* عند فتح البحث امنع تمرير الصفحة */
body.rbh-search-open {
  overflow: hidden;
}


/* ===============================
   GLOBAL
================================ */

:root {
  --rbh-blue: #245775;
  --rbh-green: #94B335;
  --rbh-white: #ffffff;
  --rbh-muted: #737373;
}

* {
  box-sizing: border-box;
}

.rbh-container {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
}

/* ===============================
   HEADER
================================ */

.rbh-header {
  width: 100%;
  height: 84px;
  background: #ffffff;
  border-bottom: 1px solid rgba(8, 62, 84, 0.08);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99999;
}

.rbh-header-inner {
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 70px;
}

.rbh-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.rbh-logo img {
  width: 160px;
  height: auto;
  display: block;
}

/* ===============================
   DESKTOP NAV
================================ */

.rbh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  height: 100%;
}

.rbh-nav > a,
.rbh-nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 84px;
  color: var(--rbh-blue);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
}



/* Dropdown */

.rbh-nav-item {
  position: relative;
  height: 84px;
  display: flex;
  align-items: center;
}

.dropdown-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -5px;
  transition: transform 0.25s ease;
}

.rbh-nav-item:hover .dropdown-arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.rbh-dropdown {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: #ffffff;
  border: 1px solid rgba(8, 62, 84, 0.08);
  box-shadow: 0 14px 35px rgba(8, 62, 84, 0.12);
  border-radius: 0 0 12px 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.rbh-dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--rbh-blue);
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s ease;
  white-space: nowrap;
  font-family: var(--font-reg);
}

.rbh-dropdown a:hover {
  background: rgba(164, 199, 53, 0.12);
  color: var(--rbh-green);
}

.rbh-nav-item:hover .rbh-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
   transform: translateX(-16%) translateY(0px);
}

/* ===============================
   HEADER ACTIONS
================================ */

.rbh-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.rbh-lang {
  color: var(--rbh-blue);
  font-size: 16px;
  text-decoration: none;
  line-height: 1;
  font-family: var(--font-reg);
}

.rbh-lang:hover {
    color: var(--rbh-blue);
}

.rbh-header-separator {
  width: 1px;
  height: 29px;
  background: rgba(8, 62, 84, 0.55);
}

/* Search Trigger */

.rbh-search-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  
  color: var(--rbh-blue);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  font-family:var(--font-reg);
}



.rbh-search-icon {

  width: 19px;
  height: 19px;
 
}

.st-btn {
    background-color: unset !important;
}

#st-1 .st-btn:hover {
    opacity: 1 !important;
    top: 0 !important;
}

/* ===============================
   BURGER BUTTON
================================ */

.rbh-burger-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 62, 84, 0.18);
  border-radius: 50%;
  background: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: 0.25s ease;
  margin-left: 0 !important;
  margin-right: auto !important;
  flex-shrink: 0;
}

.rbh-burger-btn span {
  width: 20px;
  height: 2px;
  background: var(--rbh-blue);
  border-radius: 10px;
  display: block;
  transition: 0.25s ease;
}

.rbh-burger-btn:hover {
  background: var(--rbh-blue);
}

.rbh-burger-btn:hover span {
  background: #ffffff;
}

/* ===============================
   MOBILE MENU - RIGHT SIDE
================================ */

.rbh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.rbh-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rbh-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 62, 84, 0.72);
  backdrop-filter: blur(4px);
}

.rbh-mobile-panel {
  position: fixed;
  top: 0;
  right: auto !important;
  left: 0 !important;
  width: 390px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  padding: 24px;
  transform: translateX(-100%) !important;
  transition: transform 0.35s ease;
  box-shadow: -20px 0 60px rgba(8, 62, 84, 0.22);
  overflow-y: auto;
  z-index: 2;
}

.rbh-mobile-menu.is-open .rbh-mobile-panel {
  transform: translateX(0) !important;
}

.rbh-mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(8, 62, 84, 0.12);
}

.rbh-mobile-logo img {
  width: 150px;
  display: block;
}

.rbh-mobile-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(8, 62, 84, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: var(--rbh-blue);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rbh-mobile-close:hover {
  background: var(--rbh-blue);
  color: #ffffff;
}

/* Mobile Nav */

.rbh-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-med);
}

.rbh-mobile-nav > a,
.rbh-mobile-dropdown-btn {
  min-height: 50px;
  padding: 0 16px;
  border-radius: 12px;
  color: var(--rbh-blue);
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.25s ease;
  gap: 6px;
}

.rbh-mobile-nav > a:hover,
.rbh-mobile-nav > a.active,
.rbh-mobile-dropdown-btn:hover,
.rbh-mobile-dropdown.is-open .rbh-mobile-dropdown-btn {
  background: rgba(164, 199, 53, 0.14);
  color: var(--rbh-blue);
}

.rbh-mobile-dropdown-btn span {
  font-size: 20px;
  transition: 0.25s ease;
}

.rbh-mobile-dropdown.is-open .rbh-mobile-dropdown-btn span {
  transform: rotate(-100deg);
}

.rbh-mobile-dropdown-list {
  display: none;
  padding: 6px 0 8px 18px;
}

.rbh-mobile-dropdown.is-open .rbh-mobile-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rbh-mobile-dropdown-list a {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  color: rgba(8, 62, 84, 0.82);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.25s ease;
}

.rbh-mobile-dropdown-list a:hover {
  background: rgba(8, 62, 84, 0.07);
  color: var(--rbh-blue);
}

/* Mobile Actions */

.rbh-mobile-actions {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(8, 62, 84, 0.12);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.rbh-mobile-lang,
.rbh-mobile-search {
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(8, 62, 84, 0.22);
  background: #ffffff;
  color: var(--rbh-blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-reg);
}

.rbh-mobile-lang:hover,
.rbh-mobile-search:hover {
  background: var(--rbh-blue);
  color: #ffffff;
}

.rbh-mobile-social {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rbh-mobile-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rbh-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rbh-mobile-social a:hover {
  background: var(--rbh-green);
}

body.rbh-menu-open {
  overflow: hidden;
}

/* ===============================
   SEARCH OVERLAY
================================ */

.rbh-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: none;
}

.rbh-search-overlay.is-open {
  display: block;
}

.rbh-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 62, 84, 0.72);
  backdrop-filter: blur(5px);
}

.rbh-search-box {
  position: relative;
  width: min(820px, calc(100% - 32px));
  margin: 120px auto 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 46px 48px 38px;
  box-shadow: 0 28px 70px rgba(8, 62, 84, 0.28);
  animation: rbhSearchIn 0.32s ease forwards;
}

@keyframes rbhSearchIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.rbh-search-close {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 62, 84, 0.2);
  border-radius: 50%;
  background: #ffffff;
  color: var(--rbh-blue);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rbh-search-close:hover {
  background: var(--rbh-blue);
  color: #ffffff;
}

.rbh-search-box-head {
  text-align: center;
  margin-bottom: 34px;
}

.rbh-search-box-head span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rbh-green);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.rbh-search-box-head span::before {
  content: "";
  width: 27px;
  height: 1px;
  background: var(--rbh-green);
}

.rbh-search-box-head h2 {
  margin: 0 0 12px;
  color: var(--rbh-blue);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.rbh-search-box-head p {
  width: min(560px, 100%);
  margin: 0 auto;
  color: var(--rbh-muted);
  font-size: 16px;
  line-height: 1.5;
}

.rbh-search-input-wrap {
  width: 100%;
  min-height: 64px;
  border: 1.5px solid rgba(8, 62, 84, 0.25);
  border-radius: 999px;
  background: #f8fafb;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 24px;
  transition: 0.25s ease;
}

.rbh-search-input-wrap:focus-within {
  border-color: var(--rbh-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 62, 84, 0.08);
}

.rbh-search-input-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid var(--rbh-blue);
  border-radius: 50%;
}

.rbh-search-input-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--rbh-blue);
  right: -7px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 5px;
}

.rbh-search-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--rbh-blue);
  font-size: 18px;
  font-family: inherit;
}

.rbh-search-input-wrap input::placeholder {
  color: rgba(8, 62, 84, 0.48);
}

.rbh-search-input-wrap button {
  min-width: 144px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--rbh-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: 0.25s ease;
}

.rbh-search-input-wrap button:hover {
  background: var(--rbh-green);
}

.rbh-search-input-wrap span {
    transform: scaleX(-1);
}

.rbh-search-suggestions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rbh-search-suggestions span {
  color: var(--rbh-muted);
  font-size: 14px;
}

.rbh-search-suggestions a {
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(8, 62, 84, 0.22);
  color: var(--rbh-blue);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

.rbh-search-suggestions a:hover {
  background: var(--rbh-blue);
  color: #ffffff;
}

body.rbh-search-open {
  overflow: hidden;
}


html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* ===============================
   FIXED NAVBAR
================================ */

.rbh-header {
  width: 100%;
  height: 84px;
  background: #ffffff;
  border-bottom: 1px solid rgba(8, 62, 84, 0.08);
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 999999 !important;
  
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* حتى لا يغطي النافبار أول قسم */
body {
  padding-top: 84px;
}

/* تحسين شكل النافبار عند النزول */
.rbh-header.scrolled {
 
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* لو عندك Hero بعد الهيدر مباشرة لا تضيف margin سالب */
.rbh-hero-section {
  margin-top: 0;
}

/* ===============================
   ACCESSIBILITY + SCROLL UP
================================ */

.rbh-accessibility-btn,
.rbh-scroll-up-btn {
  position: fixed;
  z-index: 99999;

  border: 0;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  transition: 0.25s ease;
}

.rbh-accessibility-btn {
  left: 20px;
  bottom: 34px;
  font-size: 18px;
}

.rbh-scroll-up-btn {
  right: 20px;
  bottom: 34px;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.rbh-scroll-up-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-icon {
    max-width: 55.5px;
}
#scroll-top {
    margin-right: 15px;
}
/* Accessibility Panel */

.rbh-accessibility-panel {
  position: fixed;
  left: 20px;
  bottom: 78px;
  width: 280px;
  background: #ffffff;
  border: 1px solid rgba(8, 62, 84, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(8, 62, 84, 0.18);
  padding: 18px;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.rbh-accessibility-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rbh-accessibility-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rbh-accessibility-head h3 {
  margin: 0;
  color: var(--rbh-blue);
  font-size: 18px;
  font-weight: 800;
}

.rbh-accessibility-close {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(8, 62, 84, 0.16);
  border-radius: 50%;
  background: #ffffff;
  color: var(--rbh-blue);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.rbh-accessibility-close:hover {
  background: var(--rbh-blue);
  color: #ffffff;
}

.rbh-accessibility-options {
  display: grid;
  gap: 9px;
}

.rbh-accessibility-options button {
  min-height: 42px;
  border: 1px solid rgba(8, 62, 84, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--rbh-blue);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: 0.25s ease;
}

.rbh-accessibility-options button:hover {
  background: var(--rbh-blue);
  color: #ffffff;
}

.acc-image {
    max-width: 55.5px;
}

/*.access-icon {
    left: -45px !important;
}*/

/* High Contrast Mode */

body.rbh-high-contrast {
  background: #000000 !important;
  color: #ffffff !important;
}

body.rbh-high-contrast section,
body.rbh-high-contrast header,
body.rbh-high-contrast footer,
body.rbh-high-contrast .rbh-tool-card,
body.rbh-high-contrast .rbh-search-box,
body.rbh-high-contrast .rbh-mobile-panel,
body.rbh-high-contrast .rbh-accessibility-panel {
  background: #000000 !important;
  color: #ffffff !important;
}

body.rbh-high-contrast a,
body.rbh-high-contrast h1,
body.rbh-high-contrast h2,
body.rbh-high-contrast h3,
body.rbh-high-contrast p,
body.rbh-high-contrast li,
body.rbh-high-contrast span {
  color: #ffffff !important;
}

body.rbh-high-contrast button,
body.rbh-high-contrast .rbh-btn,
body.rbh-high-contrast .rbh-tool-btn,
body.rbh-high-contrast .rbh-news-read-btn {
  border-color: #ffffff !important;
}

/* Font Size Modes */

body.rbh-font-large {
  font-size: 110%;
}

body.rbh-font-small {
  font-size: 92%;
}



/* ===============================
   INNER HERO
================================ */

.rbh-inner-hero {
  position: relative;
  width: 100%;
  padding: 96px 0 88px;
  background:
    linear-gradient(rgba(8, 62, 84, 0.78), rgba(8, 62, 84, 0.78)),
    url("../images/Story.svg") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.rbh-inner-hero-content {
  width: min(760px, 100%);
}

.rbh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.rbh-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.25s ease;
}

.rbh-breadcrumb a:hover {
  color: var(--rbh-green);
}

.breadcrumb {
    display: inline-flex;
    gap: 5px;
}
.breadcrumb-item + .breadcrumb-item::before {
    transform: scaleX(-1);
    float: right;
    color: white;
    content: "";
    margin-left: 15px;
    margin-right: 10px;
    font-size: 36px;
    margin-top: 4px;
    background-image: url('/App_Themes/ThemeEn/Images/breadcrumb-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 20px;
    display: inline-block;
}

.breadcrumb-item span {
    color: white;
}

.breadcrumb-item.active {
    width: 460px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.truncate-multiline {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3 !important;
}

/*@media (min-width: 992px) {
    .col-md-1.news-col {
        width: 8.9%;
    }

    .col-md-4.news-col {
        width: 30.333333%;
    }
}*/

@media (max-width: 991px) {
    .col-md-1.news-col {
        width: 100%;
    }

    .col-md-4.news-col {
        width: 100%;
    }
}

.rbh-inner-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--rbh-green);
  font-size: 18px;
  font-weight: var(--rbh-font-medium);
}

.rbh-inner-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rbh-green);
}

.rbh-inner-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 52px;
  font-weight: var(--rbh-font-extrabold);
  line-height: 1.12;
  letter-spacing: 1.5px;
}

.rbh-inner-hero p {
  width: min(680px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.55;
}

/* ===============================
   BLOCK LIST SECTION
================================ */

.rbh-block-list-section {
  width: 100%;
  padding: 78px 0 88px;
  background: #f5f5f5;
}

.rbh-block-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.rbh-block-list-title h2 {
  margin: 0;
  color: var(--rbh-blue);
  font-size: 39px;
  font-weight: var(--rbh-font-extrabold);
  line-height: 1.2;
  letter-spacing: 1.4px;
}

.rbh-block-list-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Search */

.rbh-block-search {
  width: 310px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(8, 62, 84, 0.18);
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.25s ease;
}

.rbh-block-search:focus-within {
  border-color: var(--rbh-blue);
  box-shadow: 0 0 0 4px rgba(8, 62, 84, 0.07);
}

.rbh-block-search-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--rbh-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.rbh-block-search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--rbh-blue);
  right: -6px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 4px;
}

.rbh-block-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--rbh-blue);
  font-size: 15px;
  font-family: var(--rbh-font-main);
}

.rbh-block-search input::placeholder {
  color: rgba(8, 62, 84, 0.45);
}

/* Select */

.rbh-block-select {
  width: 190px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(8, 62, 84, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--rbh-blue);
  font-size: 15px;
  font-family: var(--rbh-font-main);
  outline: 0;
  cursor: pointer;
}


/* ===============================
   RESOURCE LIBRARY PAGE
================================ */

:root {
  --rbh-blue: #245775;
  --rbh-dark-blue: #0d4773;
  --rbh-green: #94B335;
  --rbh-gray: #6B7280;
  --rbh-card-text: #737373;
  --rbh-white: #ffffff;
}

/* ===============================
   HERO
================================ */

.rbh-library-hero {
  position: relative;
  width: 100%;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.rbh-library-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 87, 117, 0.45);
  z-index: 1;
}

.rbh-library-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 38px;
}

.rbh-library-hero-content h1 {
  margin: 0 0 24px;
  color: #FFF;
  text-align: right;
  font-family: var(--font-bold);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.rbh-library-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-med);
  font-size: 18px;
  font-weight: 400;
}

.rbh-library-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.rbh-library-breadcrumb a:hover {
  color: var(--rbh-green);
}

.rbh-library-breadcrumb a span:hover {
  color: var(--rbh-green);
}


.rbh-library-share {
  display: flex;
  align-items: center;
  gap: 0px;
  color: #ffffff;

}

#st-1 .st-btn {
    padding: 0px 5px !important;
}

.rbh-library-share span,
.rbh-library-share a {
  color: #ffffff;
  font-family: var(--font-med);
  font-size: 18pxs;
  text-decoration: none;
}

.rbh-library-share a:hover {
  color: var(--rbh-green);
}

/* ===============================
   SECTION HEADER
================================ */

.rbh-library-section {
  width: 100%;
  padding: 54px 0 100px;
  background: #ffffff;
}

.rbh-library-header {
  margin-bottom: 34px;
}

.rbh-library-heading h2 {
  margin: 0 0 18px;
  color: #245775;
  font-family: var(--font-bold);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
}

.rbh-library-heading p {
  width: min(700px, 100%);
  margin: 0;
  color: #6B7280;
  font-family: var(--font-reg);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

/* ===============================
   FILTERS
================================ */

.rbh-library-filter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) 96px;
  gap: 18px;
  align-items: center;
  margin-bottom: 52px;
}

.rbh-library-search {
  height: 48px;
  border: 1px solid rgba(13, 71, 115, 0.12);
  border-radius: 999px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 0px;
  align-items: center;
  overflow: hidden;
  transition: 0.25s ease;
}

.rbh-library-search:focus-within,
.rbh-library-select:focus,
.rbh-library-select:hover {
  border-color: var(--rbh-blue);
  box-shadow: 0 0 0 4px rgba(36, 87, 117, 0.06);
}

.rbh-library-search input {
  width: 100%;
  height: 100%;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #245775;
  font-family: var(--font-reg);
  font-size: 16px;
  font-weight: 400;
}

.rbh-library-search input::placeholder {
  color: #245775;
  opacity: 1;
}

.rbh-library-search button {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rbh-library-search-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.8px solid #111111;
  border-radius: 50%;
  display: inline-block;
}

.rbh-library-search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.8px;
  background: #111111;
  right: -6px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 4px;
}

.rbh-library-select {
  height: 48px;
  padding: 0 50px 0 18px;
  border: 1px solid rgba(13, 71, 115, 0.12);
  border-radius: 999px;
  background-color: #ffffff;
  color: #245775;
  font-family: var(--font-reg);
  font-size: 16px;
  font-weight: 400;
  outline: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: 0.25s ease;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 18px,
    calc(100% - 17px) 18px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.rbh-library-submit {
  width: 96px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #245775;
  color: #ffffff;
  font-family: var(--font-med);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}

.rbh-library-submit:hover {
  background: var(--rbh-green);
  transform: translateY(-2px);
}

/* ===============================
   MAIN LAYOUT
================================ */

.rbh-library-layout {
  display: grid;
  /*grid-template-columns: minmax(0, 1fr) 272px;*/
  gap: 56px;
  align-items: flex-start;
}

/* ===============================
   CARDS
================================ */

.rbh-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 298px));
  gap: 36px 18px;
  justify-content: start;
}

.rbh-library-card {
  width: 298px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition: 0.28s ease;
  margin-top: 25px;
}



.rbh-library-card-img {
  position: relative;
  display: flex;
  width: 328px;
  max-width: 100%;
  height: 212px;
  align-items: center;
  gap: 14.797px;
  border-radius: 8px 8px 0 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.rbh-library-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background:
    linear-gradient(
      180deg,
      rgba(36, 87, 117, 0.40) 0%,
      rgba(36, 87, 117, 0.60) 50%,
      rgba(36, 87, 117, 0.90) 100%
    );*/
  pointer-events: none;
}

.rbh-library-card-body {
  display: inline-flex;
  width: 100%;
  min-height: 222px;
  padding: 26px 11px 26px 11px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(13, 71, 115, 0.06);
  background: #FFF;
}

.rbh-library-card-body h3 {
  margin: 0 0 8px;
  color: var(--Color-3, #245775);
  font-family: var(--font-med);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 33.6px;
}

.rbh-library-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.rbh-library-card-body h3 a:hover {
  color: var(--rbh-green);
}

.rbh-library-card-body p {
  margin: 0 0 18px;
  color: #737373;
  font-family: var(--font-light);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 25.6px;
    border-bottom: 1px solid rgba(107, 114, 128, 0.25);

}

.rbh-library-card-link {
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 71, 115, 0.10);
  color: var(--Color-3, #245775);
  text-align: center;
  font-family: var(--font-med);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-decoration: none;
}

.rbh-library-card-link span {
  width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #245775;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.25s ease;
    padding: 0 8px;
}



.rbh-library-card-link:hover span {
  background: var(--rbh-green);
}

/* ===============================
   GLOBAL MENU
================================ */

.rbh-global-menu {
  width: 272px;
  max-width: 100%;

}

.rbh-global-menu h3 {
  margin: 0 0 10px;
  color: var(--Color-3, #245775);
  font-family: var(--font-med);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
}

.rbh-global-menu-body {
  position: relative;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  background: #FFF;
  display: flex;
  width: 272px;
  max-width: 100%;
  padding-top: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
}
.rbh-global-menu-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
 border: 1px solid #BEBEBE;
}
.rbh-global-menu-body a {
  border-bottom: 1px solid #BEBEBE;
  display: flex;
  height: 46px;
  padding: 0 16px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  color: var(--Color-2, #365D86);
  font-family: var(--font-reg);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: 0.25s ease;
}

.rbh-global-menu-body a:hover {
  color: var(--rbh-green);
  padding-left: 20px;
}

/* ===============================
   PAGINATION
================================ */

.rbh-library-pagination {
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.rbh-library-pagination a {
  width: 36px;
  height: 36px;
  border: 1.3px solid #245775;
  border-radius: 50%;
  color: #245775;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-med);
  font-size: 16px;
  font-weight: 600;
  transition: 0.25s ease;
}

.rbh-library-pagination a.active,
.rbh-library-pagination a:hover:not(.rbh-library-page-arrow) {
  background: var(--rbh-blue);
  color: #ffffff;
}
.rbh-library-pagination a:hover:not(.rbh-library-page-arrow):not(.active) {
  background: #94B335;
  border-color: #94B335;
  color: #ffffff;
}
.rbh-library-page-arrow {
  margin: 0px 10px 0px 10px;
  border-color: transparent !important;
  background: transparent !important;
  font-size: 35px !important;
  font-weight: 500 !important;
  transform: scaleX(-1);
}
.rbh-library-pagination input.aspNetDisabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

.rbh-library-pagination .rbh-library-page-arrow.is-disabled {
  color: #BEBEBE !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.rbh-library-pagination span.active, .rbh-library-pagination a:hover:not(.rbh-library-page-arrow) {
    background: var(--rbh-blue);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border: 1.3px solid #245775;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-med);
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s ease;
}

/* ===============================
   DOCUMENT TABLE INSIDE BLOCK LIST
================================ */

.rbh-documents-table-wrap {
  width: 990px;
  max-width: 100%;
  overflow-x: auto;
  background: transparent;
  border-radius: 4px 4px 0 0;
background: #FFF;
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

/* Main Table */
.rbh-documents-table {
  width: 990px;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0 0;
  background: transparent;
  table-layout: fixed;
}

/* ===============================
   TABLE HEADER
================================ */

.rbh-documents-table thead {
  display: table-header-group;
}

.rbh-documents-table thead tr {
  border-radius: 4px 4px 0 0;
  background: #FFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.rbh-documents-table th {
  height: 58px;
  padding: 10px 25px;
  color: #245775;
  font-family:var(--font-bold);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-align: right;
  vertical-align: middle;
  background: #FFF;
}

.rbh-documents-table th:first-child {
  border-radius: 4px 0 0 0;
}

.rbh-documents-table th:last-child {
  border-radius: 0 4px 0 0;
}

/* Header Gradient Line */
.rbh-documents-table thead {
  position: relative;
}

.rbh-documents-table thead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #94B335 19%,
    #365D86 72%,
    #245775 100%
  );
  z-index: 2;
}

/* Column Widths */
.rbh-documents-table th:nth-child(1),
.rbh-documents-table td:nth-child(1) {
    width: 30%;
}

.rbh-documents-table th:nth-child(2),
.rbh-documents-table td:nth-child(2) {
    width: 20%;
    text-align: center;
}

.rbh-documents-table th:nth-child(3),
.rbh-documents-table td:nth-child(3) {
    width: 15%;
    text-align: center;
}

.rbh-documents-table th:nth-child(4),
.rbh-documents-table td:nth-child(4) {
    width: 15%;
    text-align: center;
}

.rbh-documents-table th:nth-child(5),
.rbh-documents-table td:nth-child(5) {
    width: 20%;
    text-align: center;
}

/* ===============================
   TABLE BODY
================================ */

.rbh-documents-table tbody {
  display: table-row-group;
  border-radius: 0 0 4px 4px;
  background: #FFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.rbh-documents-table tbody tr {
  background: #FFF;
}

.rbh-documents-table td {
  height: 92px;
  padding: 0 25px 10px 25px;
  border-bottom: 1px solid #BEBEBE;
  vertical-align: middle;
  background: #FFF;
}

/* Remove border from last row */
.rbh-documents-table tbody tr:last-child td {
  border-bottom: 0;
}

.rbh-documents-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}

.rbh-documents-table tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}

/* ===============================
   CONTENT STYLE
================================ */

.rbh-document-title {
  color: #365D86;
  font-family: var(--font-reg);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  transition: 0.25s ease;
}



.rbh-document-size {
  color: #365D86;
  font-family: var(--font-med);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.rbh-file-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Download Button */

.rbh-download-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0F4F6A;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s ease;
}

.rbh-download-btn:hover {
  background: #94B335;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(36, 87, 117, 0.18);
}

.rbh-download-btn svg {
  flex-shrink: 0;
  width: 2rem;
  height: 1rem;
  margin-left: 16px;
}



.rbh-library-main {
  width: 100%;
  min-width: 0;
}

.rbh-documents-table-wrap {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   WIDE LIST VIEW INSIDE LIBRARY PAGE
========================================= */

.rbh-library-main {
  width: 100%;
  min-width: 0;
}

.rbh-wide-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card */

.rbh-wide-list-card {
  width: 100%;
  min-height: 240px;
  border-radius: 8px;
  border: 1px solid rgba(13, 71, 115, 0.06);
  background: #ffffff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: 328px minmax(0, 1fr);
  overflow: hidden;
  transition: 0.28s ease;
}



/* Image */

.rbh-wide-list-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
  background: #245775;
}



.rbh-wide-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}



/* Content */

.rbh-wide-list-content {
  padding: 30px 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.rbh-wide-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.rbh-wide-list-meta span {
  color: #94B335;
  font-family: var(--font-reg);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.rbh-wide-list-meta span + span {
  position: relative;
  color: #6B7280;
  padding-left: 14px;
}

.rbh-wide-list-meta span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #BEBEBE;
  transform: translateY(-50%);
}

.rbh-wide-list-content h3 {
  margin: 0 0 10px;
  color: #245775;
  font-family: var(--font-med);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
}

.rbh-wide-list-content h3 a {
  color: inherit;
  text-decoration: none;
}



.rbh-wide-list-content p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #737373;
  font-family: var(--font-light);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  border-bottom: 1px solid rgba(107, 114, 128, 0.25);
}

.rbh-wide-list-link {
  width: fit-content;
  color: #245775;
  text-align: center;
  font-family: var(--font-reg);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.rbh-wide-list-link span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #245775;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: 0.25s ease;
}

.rbh-wide-list-link:hover {
  color: #94B335;
}

.rbh-wide-list-link:hover span {
  background: #94B335;
}

/* Pagination fix */

.rbh-library-pagination {
  width: 100%;
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
/* =========================================
   WIDE LIST BUTTON
========================================= */

.rbh-wide-list-btn {
  width: fit-content;
  min-width: 168px;
  height: 44px;
  padding: 10px 24px 10px 36px;
  border-radius: 999px;
  border: 1px solid var(--rbh-blue, #245775);
  color: var(--rbh-blue, #245775);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-med);
  line-height: 1;
  align-self: flex-start;
  flex: 0 0 auto;

}

.rbh-wide-list-btn span{
    transform: scaleX(-1)
}



.rbh-wide-list-btn span img {
  width: 24px;
  height: 24px;
  display: block;

}

.rbh-wide-list-btn:hover {
  background: var(--rbh-green);
  color: #ffffff;
  border: none
  ;
}

.rbh-wide-list-btn:hover span img {
  filter: brightness(0) invert(1);
}



/* ===============================
   FILTER ICONS AS IMAGES
================================ */

.rbh-library-search {
  position: relative;
  height: 48px;
  border: 1px solid rgba(13, 71, 115, 0.12);
  border-radius: 999px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 0px;
  align-items: center;
  overflow: hidden;
  transition: 0.25s ease;
}

.rbh-library-search input {
  width: 100%;
  height: 100%;
  padding: 1px 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #245775;
  font-family: var(--font-reg);
  font-size: 15px;
  font-weight: 400;
}

.rbh-library-search button {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rbh-library-search button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  transform: scaleX(-1);
}

/* Hide old CSS search icon if it still exists */
.rbh-library-search-icon {
  display: none !important;
}

/* Select with image icon */

.rbh-library-select-wrap {
  position: relative;
  width: 100%;
  height: 48px;
}

.rbh-library-select-wrap .rbh-library-select {
  width: 100%;
  height: 48px;
  padding: 0 50px 0 18px;
  border: 1px solid rgba(13, 71, 115, 0.12);
  border-radius: 999px;
  background-color: #ffffff;
  color: #245775;
  font-family: var(--font-reg);
  font-size: 15px;
  font-weight: 400;
  outline: 0;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: none !important;
}

.rbh-library-select-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 14px;
  height: 14px;
  object-fit: contain;
  transform: translateY(-50%);
  pointer-events: none;
}

.rbh-library-search:focus-within,
.rbh-library-select-wrap .rbh-library-select:focus,
.rbh-library-select-wrap .rbh-library-select:hover {
  border-color: #245775;
  box-shadow: 0 0 0 4px rgba(36, 87, 117, 0.06);
}



/* =========================================
   FAQ PAGE / STATIC QUESTIONS LIST
========================================= */

.rbh-library-main {
  width: 100%;
  min-width: 0;
}

.rbh-faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* FAQ Card */

.rbh-faq-item {
    position: relative;
    width: 100%;
    padding: 36px 0px 25px 34px;
    border-radius: 8px;
    background: #ffffff;
    
    overflow: hidden;
   
}



/* Colored border beside the question */

.rbh-faq-item::before {
  transform: scaleX(-1);
  content: "";
  position: absolute;
  right: 0px;
  top: 28px;
  width: 5px;
  height: 46px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(
    180deg,
    #94B335 19%,
    #365D86 72%,
    #245775 100%
  );
}

/* Question */

.rbh-faq-question {
  position: relative;
  padding-right: 22px;
  margin-bottom: 12px;
}

.rbh-faq-question h3 {
  margin: 0;
  color: #245775;
  font-family: var(--font-med);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}

/* Answer */

.rbh-faq-answer {
  padding-right: 22px;
}

.rbh-faq-answer p {
  width: min(820px, 100%);
  margin: 0;
  color: #737373;
  font-family: var(--font-light);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

/* Pagination */

.rbh-library-pagination {
  width: 100%;
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}




.rbh-Search-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px auto 0;
    justify-content: center;
}

.rbh-Search-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rbh-blue);
  color: var(--rbh-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: 0.25s ease;
}

/* Hide background logo inside mobile menu */
.rbh-mobile-panel::before,
.rbh-mobile-panel::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.rbh-logo {
  background-image: none !important;
  background: #ffffff !important;
}

@media (max-width: 992px) {
    .rbh-logo {
        margin-right: 0 !important;
    }
}

.rbh-mobile-panel .rbh-mobile-bg-logo,
.rbh-mobile-menu .rbh-mobile-bg-logo {
  display: none !important;
}
/* Hide main header logo only when mobile menu is open */
body.rbh-menu-open .rbh-header .rbh-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Keep burger menu logo visible */
body.rbh-menu-open .rbh-mobile-panel .rbh-mobile-logo {
  opacity: 1;
  visibility: visible;
  display: inline-flex;
}

/* =========================================
   MOBILE MENU - WIDER PANEL + HEADER ACTIONS
========================================= */

/* Wider burger menu */
.rbh-mobile-panel {
  width: 520px !important;
  max-width: 94vw !important;
  padding: 26px 30px !important;
}

/* Mobile menu top row */
.rbh-mobile-panel-head {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(8, 62, 84, 0.10);
}

/* Logo + actions group */
.rbh-mobile-head-left {
  display: flex;
  align-items: center;
  gap: 142px;
  min-width: 0;
}

@media (max-width: 576px) {
    .rbh-mobile-head-left {
        padding-right: 5px !important;
    }
}

/* Burger menu logo */
.rbh-mobile-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.rbh-mobile-logo img {
  width: 132px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Actions beside logo */
.rbh-mobile-head-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Language button - same desktop style */
.rbh-mobile-lang-btn {
  color: var(--rbh-blue, #245775);
  font-family: var(--font-reg);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: 0.25s ease;
}

.rbh-mobile-lang-btn:hover {
  color: var(--rbh-green, #94B335);
}

/* Separator same desktop style */
.rbh-mobile-head-separator {
  width: 1px;
  height: 22px;
  background: rgba(8, 62, 84, 0.22);
  display: inline-block;
}

/* Search button - same desktop style */
.rbh-mobile-search-btn {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--rbh-blue, #245775);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-reg);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  transition: 0.25s ease;
}

.rbh-mobile-search-btn:hover {
  color: var(--rbh-green, #94B335);
}

.rbh-mobile-search-btn .rbh-search-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rbh-mobile-search-btn .rbh-search-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* Close button */
.rbh-mobile-close {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(8, 62, 84, 0.14) !important;
  background: #ffffff !important;
  color: var(--rbh-blue, #245775) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 30px !important;
  line-height: 1 !important;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.25s ease;
}

/*@media (max-width: 576px) {
    .rbh-mobile-close {
        right: 340px !important;
    }
}

@media (max-width: 380px) {
    .rbh-mobile-close {
        right: 300px !important;
    }
}*/

.rbh-mobile-close:hover {
  background: var(--rbh-blue, #245775) !important;
  color: #ffffff !important;
}

/* Hide old mobile actions if still exists */
.rbh-mobile-actions {
  display: none !important;
}

/* =========================================
   INNER HERO RESPONSIVE FIX
========================================= */

.rbh-library-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.rbh-library-hero-content {
  min-width: 0;
}

.rbh-library-share {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.rbh-library-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rbh-library-share a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}



/* =========================================
   SITEMAP FLAT LIST - NO CARDS
========================================= */

.rbh-library-main {
  width: 100%;
  min-width: 0;
}

.rbh-sitemap-flat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

/* Section */

.rbh-sitemap-flat-section {
  width: 100%;
  padding: 0 0 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Section Title */

.rbh-sitemap-flat-section h3 {
  position: relative;
  margin: 0 0 18px;
  padding-left: 18px;
  padding-bottom: 0;
  color: #245775;
  font-family: var(--font-bold);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}

/* Colored border beside title */

.rbh-sitemap-flat-section h3::before {
  content: "";
  position: absolute;
  right: -1rem;
  top: 5px;
  width: 5px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #94B335 19%,
    #365D86 72%,
    #245775 100%
  );
}

/* List */

.rbh-sitemap-flat-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbh-sitemap-flat-section li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #BEBEBE;
}

.rbh-sitemap-flat-section li:first-child {
  border-top: 1px solid #BEBEBE;
}

/* Links */

.rbh-sitemap-flat-section a {
  min-height: 58px;
  padding: 0 4px;
  color: #365D86;
  font-family: var(--font-reg);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: 0.25s ease;
}

.rbh-sitemap-flat-section a span {
  display: block;
}

.rbh-sitemap-flat-section a img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  transition: 0.25s ease;
}

/* Hover */

.rbh-sitemap-flat-section a:hover {
  color: #94B335;
  padding-left: 10px;
}

.rbh-sitemap-flat-section a:hover img {
  transform: translateX(4px);
}

    /* Override link styles for parent headings */
    .rbh-sitemap-flat-section h3 a {
        min-height: auto;
        padding: 0;
        display: inline;
        font-family: var(--font-bold);
        font-size: 28px;
        font-weight: 700;
        line-height: 36px;
        color: #245775;
        gap: 0;
        justify-content: flex-start;
    }

        .rbh-sitemap-flat-section h3 a:hover {
            color: #94B335;
            padding-left: 0;
        }

/* =========================================
   MOBILE / BURGER MENU - FULL UPDATED CSS
========================================= */

/* Main wrapper */
.rbh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

/* Open state */
.rbh-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop */
.rbh-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 62, 84, 0.35);
  opacity: 0;
  transition: 0.3s ease;
}

.rbh-mobile-menu.is-open .rbh-mobile-menu-backdrop {
  opacity: 1;
}

/* Panel */
.rbh-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 560px;
  max-width: 94vw;
  height: 100vh;
  padding: 34px 34px 30px;
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: -20px 0 60px rgba(8, 62, 84, 0.22);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  z-index: 2;
}

.rbh-mobile-menu.is-open .rbh-mobile-panel {
  transform: translateX(0);
}

/* Hide any decorative background logo */
.rbh-mobile-panel::before,
.rbh-mobile-panel::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

/* =========================================
   CLOSE BUTTON - FIXED ON SIDE
========================================= */

.rbh-mobile-close {
  position: absolute !important;
  top: 26px;
  left: 26px;
  z-index: 50;

  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;

  border-radius: 50% !important;
  border: 1px solid rgba(36, 87, 117, 0.18) !important;
  background: #ffffff !important;
  color: #245775 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-family: var(--font-bold);
  font-size: 30px !important;
  font-weight: 300 !important;
  line-height: 1 !important;

  cursor: pointer;
  transition: 0.25s ease;
}

.rbh-mobile-close:hover {
  background: #245775 !important;
  color: #ffffff !important;
  border-color: #245775 !important;
}

/* =========================================
   TOP HEADER INSIDE MENU
========================================= */

/* Main top row */
.rbh-mobile-head-left {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 0 !important;

  padding-left: 76px;
  padding-bottom: 28px;
  margin-bottom: 24px;

  border-bottom: 1px solid rgba(36, 87, 117, 0.10);
}

/* Logo */
.rbh-mobile-logo {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  text-decoration: none;
}

.rbh-mobile-logo img {
  width: 142px;
  max-width: 142px;
  height: auto;
  display: block;
}

/* Language + Search wrapper */
.rbh-mobile-head-actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;

  flex-shrink: 0;

  /* This is the main spacing between logo and buttons */
  margin-right: 52px !important;
}

/* Language button */
.rbh-mobile-lang-btn {
  color: #245775;
  font-family: var(--font-reg);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.rbh-mobile-lang-btn:hover {
  color: #94B335;
}

/* Separator */
.rbh-mobile-head-separator {
  width: 1px;
  height: 22px;
  background: rgba(36, 87, 117, 0.22);
  display: inline-block;
  flex-shrink: 0;
}

/* Search button */
.rbh-mobile-search-btn {
  border: 0;
  outline: 0;
  background: transparent;
  color: #245775;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  cursor: pointer;

  font-family: var(--font-reg);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;

  padding: 0;
  transition: 0.25s ease;
}

.rbh-mobile-search-btn:hover {
  color: #94B335;
}

.rbh-mobile-search-btn .rbh-search-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rbh-mobile-search-btn .rbh-search-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* Hide old duplicated mobile actions */
.rbh-mobile-actions {
  display: none !important;
}

/* =========================================
   MOBILE NAVIGATION
========================================= */

.rbh-mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rbh-mobile-nav > a,
.rbh-mobile-dropdown-btn {
  width: 100%;
  min-height: 54px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(36, 87, 117, 0.12);
  background: transparent;

  color: #245775;
  font-family: var(--font-reg);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  text-align: left;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
  transition: 0.25s ease;
}

.rbh-mobile-nav > a:hover,
.rbh-mobile-dropdown-btn:hover {
  color: #94B335;
  padding-left: 10px;
}

.rbh-mobile-nav > a.active {
  color: #94B335;
}

/* Dropdown */
.rbh-mobile-dropdown {
  width: 100%;
}

.rbh-mobile-dropdown-btn .dropdown-arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: 0.25s ease;
}

.rbh-mobile-dropdown.is-open .dropdown-arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.rbh-mobile-dropdown-list {
  display: none;
  padding: 8px 0 10px 18px;
  border-bottom: 1px solid rgba(36, 87, 117, 0.12);
}

.rbh-mobile-dropdown.is-open .rbh-mobile-dropdown-list {
  display: flex;
  flex-direction: column;
}

.rbh-mobile-dropdown-list a {
  min-height: 42px;
  color: #365D86;
  font-family: var(--font-reg);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;

  display: flex;
  align-items: center;

  transition: 0.25s ease;
}

.rbh-mobile-dropdown-list a:hover {
  color: #94B335;
  padding-left: 8px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.rbh-Search-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.rbh-Search-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #245775;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s ease;
}

.rbh-Search-social a:hover {
  background: #94B335;
  transform: translateY(-2px);
}

.rbh-Search-social a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

/* =========================================
   BODY LOCK WHEN MENU OPEN
========================================= */

body.rbh-menu-open {
  overflow: hidden;
}

/* Hide main header logo when menu is open */
body.rbh-menu-open .rbh-header .rbh-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Keep mobile logo visible */
body.rbh-menu-open .rbh-mobile-panel .rbh-mobile-logo {
  opacity: 1;
  visibility: visible;
  display: inline-flex !important;
}



/* =========================================
   FILTER CATEGORY DROPDOWN - NAVBAR STYLE
========================================= */

.rbh-filter-dropdown {
  position: relative;
  width: 100%;
  height: 48px;
  z-index: 30;
}

.rbh-filter-dropdown-trigger {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(13, 71, 115, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #245775;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  font-family: var(--font-reg);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;

  cursor: pointer;
  transition: 0.25s ease;
}

.rbh-filter-dropdown-trigger:hover,
.rbh-filter-dropdown.is-open .rbh-filter-dropdown-trigger {
  border-color: #245775;
  box-shadow: 0 0 0 4px rgba(36, 87, 117, 0.06);
}

.rbh-filter-dropdown-current {
  /*overflow: hidden;*/
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rbh-filter-dropdown-arrow {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.rbh-filter-dropdown.is-open .rbh-filter-dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */

.rbh-filter-dropdown-menu {
 position: absolute;
    top: calc(100% + 0px);
    left: 22px;
    right: 0;
    border-radius: 0 0 8px 8px;
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(8, 62, 84, 0.16);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: 0.25s ease;
    width: 93%;
}

.rbh-filter-dropdown.is-open .rbh-filter-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Menu Items */

.rbh-filter-dropdown-menu button {
  width: 100%;
  min-height: 58px;
  padding: 0 24px;

  border: 0;
  background: #ffffff;
  color: #245775;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  text-align: left;
  font-family: var(--font-reg);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;

  cursor: pointer;
  transition: 0.22s ease;
}

.rbh-filter-dropdown-menu button:hover,
.rbh-filter-dropdown-menu button.active {
  background: #f3f6e6;
  color: #94B335;
}

/* First item keeps clean top */
.rbh-filter-dropdown-menu button:first-child {
  padding-top: 4px;
}

/* Last item similar to navbar dropdown selected style */
.rbh-filter-dropdown-menu button:last-child {
  padding-bottom: 4px;
}


/* Remove background from accessibility and scroll up buttons */
.rbh-scroll-up-btn,
.rbh-scroll-up-btn.show,
.rbh-accessibility-btn {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Keep icons/images clear */
.rbh-scroll-up-btn img,
.rbh-accessibility-btn img {
  display: block;
  background: transparent !important;
}

/* Info Page */
.rbh-info-content h3 {
  color: #245775;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-bold);
}

.rbh-info-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: var(--font-reg);
}

/* =========================================
   FULL WIDTH LIST INSIDE LIBRARY PAGE
========================================= */

.rbh-library-main {
    width: 100%;
    min-width: 0;
}

.rbh-listing-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* List Item */

.rbh-list-item {
    width: 100%;
    min-height: 220px;
    border-radius: 8px;
    border: 1px solid rgba(13, 71, 115, 0.06);
    background: #ffffff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14);
    display: grid;
    grid-template-columns: 328px minmax(0, 1fr);
    overflow: hidden;
    transition: 0.28s ease;
    margin-top: 20px;
}

    .rbh-list-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 34px rgba(13, 71, 115, 0.14);
    }

/* Image */

.rbh-list-item-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    background: #245775;
}

    .rbh-list-item-image::after {
        content: "";
        position: absolute;
        inset: 0;
        /*background: linear-gradient( 180deg, rgba(36, 87, 117, 0.40) 0%, rgba(36, 87, 117, 0.60) 50%, rgba(36, 87, 117, 0.90) 100% );*/
        pointer-events: none;
    }

    .rbh-list-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.35s ease;
    }

.rbh-list-item:hover .rbh-list-item-image img {
    transform: scale(1.05);
}

/* Content */

.rbh-list-item-content {
    padding: 28px 34px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.rbh-list-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

    .rbh-list-item-meta span {
        color: #94B335;
        font-family: var(--font-med);
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }

        .rbh-list-item-meta span + span {
            position: relative;
            color: #6B7280;
            padding-left: 14px;
        }

            .rbh-list-item-meta span + span::before {
                content: "";
                position: absolute;
                left: 0;
                top: 50%;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background: #BEBEBE;
                transform: translateY(-50%);
            }

.rbh-list-item-content h3 {
    margin: 0 0 10px;
    color: #245775;
    font-family: var(--font-bold);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .rbh-list-item-content h3 a {
        color: inherit;
        text-decoration: none;
    }

        .rbh-list-item-content h3 a:hover {
            color: #94B335;
        }

.rbh-list-item-content p {
    margin: 0 0 20px;
    color: #737373;
    font-family: var(--font-reg);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    border-bottom: 1px solid #ccc;
}

.rbh-list-item-link {
    width: fit-content;
    color: #245775;
    text-align: center;
    font-family: Roboto, Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .rbh-list-item-link span {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #245775;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        transition: 0.25s ease;
    }

    .rbh-list-item-link:hover {
        color: #94B335;
    }

        .rbh-list-item-link:hover span {
            background: #94B335;
        }

/* Without Image */

.rbh-list-item-no-image {
    grid-template-columns: 1fr;
    min-height: auto;
}

    .rbh-list-item-no-image .rbh-list-item-content {
        padding: 30px 34px;
    }

/* Pagination */

.rbh-library-pagination {
    width: 100%;
    margin-top: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

/* ============================================
   NEWS SECTION - RESPONSIVE (MAX-WIDTH: 992px)
============================================ */

@media (max-width: 992px) {
    /* Override the grid completely */
    .rbh-news-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    /* Main card takes full width */
    .rbh-news-main-card {
        width: 100% !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* Side list takes full width */
    .rbh-news-side-list {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        grid-column: auto !important;
    }

    /* Main card image */
    .rbh-news-main-img {
        height: auto !important;
        max-height: 310px !important;
    }

    .rbh-news-main-img img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }

    /* Side card layout - stack vertically */
    .rbh-news-side-card {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    /* Side card image */
    .rbh-news-side-img {
        width: 100% !important;
        height: auto !important;
        max-height: 200px !important;
    }

    .rbh-news-side-img img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }

    /* Side card content */
    .rbh-news-side-content {
        padding-top: 0 !important;
        width: 100% !important;
    }

    /* Adjust header for mobile */
    .rbh-news-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }

    /* Adjust heading paragraph width */
    .rbh-news-heading p {
        width: 100% !important;
    }
}


/* Search input wrapper - makes input and button sit together */
.search-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Input field with padding for icon - RTL version */
.form-control.with-search-icon {
    padding-left: 40px !important;
    color: #245775;
}

/* Search icon button positioned inside the input - RTL version */
.rbh-search-icon-btn {
    position: absolute;
    left: 10px; /* Icon on left side for RTL */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .rbh-search-icon-btn img {
        width: 20px;
        height: 20px;
    }

/* Remove the blue highlight outline */
.form-control.with-search-icon:focus {
    outline: none;
    box-shadow: none;
    border-color: #ccc;
}

@media (min-width: 992px) {
    .row.g-3.mb-4 {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
    }

    .news-col {
        flex: 1 1 0;
        min-width: 0;
    }

        .news-col:last-child {
            flex: 0 0 auto;
            width: 8.9%;
            min-width: 80px;
        }
}