@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


/* Module Css */
@import url("module-css/header.css");
@import url("module-css/footer.css");
@import url("module-css/banner.css");
@import url("module-css/home.css");
@import url("module-css/about.css");
@import url("module-css/contact.css");
@import url("module-css/news.css");
@import url("module-css/blog.css");
@import url("module-css/testimonial.css");


/* @import url("module-css/services.css");
@import url("module-css/breadcrumb.css");
@import url("module-css/fact-counter.css");
@import url("module-css/partner.css");

@import url("module-css/team.css");
@import url("module-css/product.css"); */


/*=============================
	1. Variable CSS
===============================*/
:root {
  --thm-font: "Work Sans", sans-serif;
  --thm-font-title: "Manrope", sans-serif;
  --thm-primary: #1A3C2A;
  --thm-orange: #C45A00;
  --thm-gray: #C1C8C2;
  --thm-text-bg: #E2E3DF;
  --thm-text: #414844;
  --thm-font-size: 15px;
  --thm-font-weight: 500;
  --thm-heading-font-weight: 700;
}

body {
  font-family: var(--thm-font);
  font-weight: var(--thm-font-weight);
  font-size: var(--thm-font-size);
  line-height: 30px;
  color: var(--thm-text);
  font-style: normal;
}

p {
  font-size: var(--thm-font-size);
  font-weight: var(--thm-font-weight);
  line-height: 27px;
  color: var(--thm-text);
  margin-bottom: 0;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

img,
.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

button {
  outline: none;
  border: none;
}

a:focus,
.btn:focus,
button:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
  color: var(--thm-primary);
  text-decoration: none;
}

a,
button {
  color: var(--thm-primary);
  outline: medium none;
  text-decoration: none;
}

.btn:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--thm-font);
  color: var(--thm-text);
  margin-top: 0px;
  margin-bottom: 0;
  font-style: normal;
  line-height: 1.2em;
  font-weight: var(--thm-heading-font-weight);
  text-transform: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.swiper-button-next {
  right: 0px;
  left: auto;
}

.swiper-button-prev {
  left: 0px;
  right: auto;
}

/*=============================
	Sec Title CSS
===============================*/
.sec-title {
  position: relative;
  display: block;
  margin-top: -7px;
  padding-bottom: 57px;
}

.sec-title .sub-title {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sec-title .sub-title h5 {
  color: var(--thm-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.016em;
}

.sec-title h2 {
  color: var(--thm-text);
  font-size: 30px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.04em;
}

/*=============================
	Thm Btn
===============================*/
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 0 15px;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
  text-transform: uppercase;
  font-family: var(--thm-font);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 2;
}

.thm-btn:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 1;
  transform: scaleX(1);
  transition-duration: 800ms;
  background-color: var(--thm-primary);
  z-index: -1;
}

.thm-btn:hover:after {
  transform: scaleX(0);
  transition-duration: 1500ms;
}

.thm-btn:before {
  position: absolute;
  top: 0px;
  left: 100%;
  right: -50px;
  content: "";
  background: var(--thm-text-bg);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-duration: 800ms;
  z-index: 1;
  bottom: 0;
}

.thm-btn:hover:before {
  left: 0px;
  right: 0px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.thm-btn .txt {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 600;
}

.thm-btn:hover,
.thm-btn:focus {
  color: var(--thm-primary);
  -webkit-box-shadow: 2px 2px 20px 0px rgba(var(--thm-text-rgb), 0.1);
  -moz-box-shadow: 2px 2px 20px 0px rgba(var(--thm-text-rgb), 0.1);
  box-shadow: 2px 2px 20px 0px rgba(var(--thm-text-rgb), 0.1);
}

/* btn light*/

.thm-btn.light {
  color: var(--thm-primary);
}

.thm-btn.light:after {
  background-color: var(--thm-text-bg);
}

.thm-btn.light:before {
  background: var(--thm-primary);
}


.thm-btn.light:hover,
.thm-btn.light:focus {
  color: #fff;
}


.thm-btn.orange:after {
  background-color: var(--thm-orange);
}

.thm-btn.orange:before {
  background: var(--thm-primary);
}

.thm-btn.orange:hover,
.thm-btn.orange:focus {
  color: #fff;
}

/* end */


.list-wrap {
  margin: 0px;
  padding: 0px;
}

.list-wrap li {
  list-style: none;
}

hr {
  border-bottom: 1px solid var(--thm-primary);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--thm-text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: var(--thm-primary);
  color: var(--thm-text);
  text-shadow: none;
}

::-moz-selection {
  background: var(--thm-primary);
  color: var(--thm-text);
  text-shadow: none;
}

::selection {
  background: var(--thm-primary);
  color: var(--thm-text);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--thm-text);
  font-size: var(--thm-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--thm-text);
  font-size: var(--thm-font-size);
  opacity: 1;
}

.separator {
  border-top: 1px solid var(--thm-primary);
}

/***
=============================================
   Search Popup
=============================================
***/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.8;
  cursor: pointer;
}

.search-popup__close-icon {
  position: absolute;
  top: 30px;
  right: 47px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 999;
}

.search-popup__close-icon:hover {
  background: var(--thm-primary);
}

.search-popup__close-icon span {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.search-popup__close-icon:hover span {
  color: #fff;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  padding-right: 75px;
}

.search-popup__content .btn-box {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: -1px;
  right: 0px;
  border-radius: 0;
  background-color: var(--thm-primary);
  border: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.search-popup__content .btn-box:hover {
  background: var(--thm-primary);
}

.search-popup__content .btn-box i::before {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  margin-left: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

.search-popup__content .btn-box:hover i::before {
  color: #fff;
}

/*=============================
	 Preloader
==============================*/
#preloader {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 999;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 75px;
  display: inline-block;
  vertical-align: middle;
}

.loader .loader-outter {
  position: absolute;
  border: 4px solid var(--thm-primary);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.loader .loader-inner {
  position: absolute;
  border: 4px solid var(--thm-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* scrollUp */
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: -50%;
  right: 30px;
  font-size: var(--thm-body-font-size);
  border-radius: 60px;
  z-index: 99;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: var(--thm-text);
  transition: .5s ease;
  border: none;
  font-size: 20px;
}


.scroll-top.open {
  bottom: 30px;
}

.scroll-top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
  background: #5c5c5c;
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 0px;
  color: var(--thm-text);
  font-size: 16px;
  line-height: 45px;
  font-weight: 600;
  border: 1px solid rgba(var(--thm-text-rgb), 0.6);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: #fff;
  background: var(--thm-primary);
  border-color: var(--thm-primary);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: var(--thm-text);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: #fff;
}

.styled-pagination li a span:before {
  position: relative;
  top: 1px;
  color: var(--thm-text);
  font-size: 17px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: #fff;
}


/*=============================
Feauture Four Css
===============================*/
.feauture-two.style4 {
  position: relative;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}


/*=============================
Project Two Css
===============================*/
.project-two {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background: var(--thm-text);
  z-index: 1;
}

.project-two .sec-title h2 {
  color: #fff;
}

.project-two .container {
  overflow: hidden;
}

.project-two .overlay-content {
  position: absolute;
  left: 0;
  bottom: 29px;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 800ms ease;
  z-index: 5;
}

.project-two .swiper-slide-active .overlay-content {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.project-two .swiper-slide img {
  border-radius: 20px;
  min-height: 450px;
  max-height: 450px;
  width: 100%;
  object-fit: cover;

}

.project-two .swiper-slide-active img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.project-two .overlay-content p {
  color: #fff;
}

.project-two .overlay-content h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
}

.project-two .overlay-content h2 a {
  color: #fff;
}

/*   */
.category_box {
  padding: 80px 0;
}

.category_box .box {
  background-color: #ddd;
  padding: 80px 40px 30px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  z-index: 1;
  transition: .5s;
  text-align: center;
  margin-bottom: 16px;
}

.category_box .box.first {
  padding: 30px 40px 80px;
}

.category_box .box .product_img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  max-width: 400px;
  transform: scale(1);
}

.category_box .box:hover .product_img {
  transform: scale(1.1);
}

.category_box .box.first .product_img {
  height: 500px;
}

.category_box .box.first .logo_hover {
  left: -134px;
}

.category_box .box .logo_hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: .5s;
  opacity: .06;
  filter: grayscale(1);
}

.category_box .box:hover {
  background-color: var(--thm-primary);
}

.category_box .box:hover .logo_hover {
  opacity: .3;
  filter: brightness(0.8);
}

.category_box .box a {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 19px;
  color: var(--thm-text);
  display: flex;
  align-items: center;
  transition: .5s;
}

.category_box .box:hover a {
  color: #fff;
}

.category_box .box.first a {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
}

.category_box .box a span {
  padding-left: 6px;
  font-weight: bold;
  font-size: 12px;
}

@media(max-width:992px) {
  .category_box .box.first .product_img {
    height: 112px;
  }
}

@media(max-width:768px) {

  .category_box .box .product_img,
  .category_box .box.first .product_img {
    height: 150px;
  }

  .category_box .box a {
    font-size: 16px;
  }
}

.modal .close {
  color: #222;
  background: transparent;
  margin-left: auto;
  margin-right: 0;
  display: block;
  font-size: 36px;
  padding: 7px 14px;
}



/* counter top */
.top_counter {
  background-color: #0b3022;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
}

.top_counter h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  color: #ffffff;
  position: relative;
  padding-left: 10px;
  margin-bottom: 5px;
  display: inline-block;
}

.top_counter h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--thm-orange);
  border-radius: 50%;
  position: absolute;
  left: -4px;
  top: 6px;
}


.update-time {
  font-size: 0.85rem;
  color: #a3b8b0;
}

.stat-number .odometer {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #a3b8b0;
}

@media (min-width: 992px) {
  .divider-end {
    border-end: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 25px;
  }
}

/* filter card */
.filter-card {
  background-color: #fcfdfc;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: -135px;
  position: relative;
}

.filter-card .form-control,
.filter-card .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  padding: 12px 16px;
  color: #333;
  font-size: 0.95rem;
  box-shadow: none !important;
}

.filter-card .form-control:focus,
.filter-card .form-select:focus {
  border-color: #0b3022;
  box-shadow: 0 0 0 0.2rem rgba(11, 48, 34, 0.15);
}

.filter-card .search-wrapper {
  position: relative;
}

.filter-card .search-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.1rem;
}

.filter-card .search-wrapper .form-control {
  padding-left: 45px;
}

/**/
.link_bottom {
  margin-top: 30px;
}

.link_bottom span {
  background-color: rgb(255 255 255 / 10%);
  color: #fff;
  display: block;
  font-size: 13px;
  text-align: center;
  padding: 0 12px;
}

.link_bottom a {
  width: auto;
  border: 0;
  padding: 0 10px;
  margin: 0;
}

.box_resource {
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 0px;
  position: relative;
  padding-bottom: 100px !important;
}

.box_resource h6 {
  display: inline-block;
  background-color: var(--thm-primary);
  color: #fff;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 17px;
}

.box_resource h2 {
  color: var(--thm-primary);
  font-size: 37px;
  margin-top: 8px;
  line-height: normal;
  margin-bottom: 22px;
}

.label_bottom {
  position: absolute;
  bottom: 35px;
  left: 0;
  padding: 0 48px;
}

.label_bottom h5 {
  font-size: 13px;
  font-weight: 500;
  background-color: #EDEEEA;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  gap: 7px;
}

.label_bottom h5.orange {
  background-color: #fda15526;
  color: #924C00;
}

@media(max-width:768px) {
  .box_resource h2 {
    font-size: 25px;
  }

  .label_bottom {
    padding: 0 20px;
  }

  .box_resource {
    padding: 20px 20px 100px 20px !important;
  }
}


/* ==========================================================================
  1. HERO BANNER SECTION (pr-hero-section)
  ========================================================================== */
.pr-hero-section {
  position: relative;
  background-size: cover;
  padding: 250px 0 60px 0;
  color: #ffffff;
  z-index: 1;
  background-position: center;
  background-size: cover;
}

.pr-hero-section::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #1a3c2a00 0%, var(--thm-primary) 100%);
  z-index: -1;
}

.pr-hero-section .pr-badge {
  background-color: var(--thm-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0px 15px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 20px;
}

.pr-hero-section .pr-main-title {
  font-size: 3rem;
  font-weight: 700;
  max-width: 900px;
  margin-bottom: 25px;
  color: #fff;
}

.pr-hero-section .pr-meta-info {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .pr-hero-section {
    padding: 80px 0 40px 0;
  }

  .pr-hero-section .pr-main-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
  2. MAIN CONTENT & SIDEBAR (pr-body-section)
  ========================================================================== */
.pr-body-section {
  padding: 60px 0;
}

/* Share Tools Column */
.pr-body-section .pr-share-tools {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: sticky;
  top: 80px;
}

.pr-body-section .pr-share-btn {
  color: #6c757d;
  font-size: 1.1rem;
  transition: color 0.2s ease;
  background: none;
  border: none;
  padding: 5px;
}

.pr-body-section .pr-share-btn:hover {
  color: var(--thm-primary);
}

/* Article Body Text */
.pr-body-section .pr-article-lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
}

.pr-body-section .pr-article-p {
  color: #333333;
  margin-bottom: 25px;
  text-align: justify;
}

/* Blockquote Styles */
.pr-body-section .pr-custom-quote {
  border-left: 3px solid var(--thm-primary);
  padding-left: 25px;
  margin: 35px 0;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--thm-primary);
  line-height: 1.7;
}

/* Data Highlights Box */
.pr-body-section .pr-data-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 30px;
  margin: 35px 0;
}

.pr-body-section .pr-data-box-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--thm-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pr-body-section .pr-data-box-title i {
  color: #d98253;
  font-size: 1.1rem;
}

.pr-body-section .pr-data-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pr-body-section .pr-data-item {
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #333333;
}

.pr-body-section .pr-data-item::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.65rem;
  color: #444444;
}

.pr-body-section .pr-data-item strong {
  color: #000000;
  font-weight: 700;
}

.pr-body-section .pr-data-item:last-child {
  margin-bottom: 0;
}

/* Sidebar Widgets */
.pr-body-section .pr-sidebar-widget {
  background-color: #f1f3f2;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.pr-body-section .pr-widget-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 10px;
}

.pr-body-section .pr-contact-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0px;
}

.pr-body-section .pr-contact-title {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.pr-body-section .pr-contact-link {
  display: block;
  font-size: 0.85rem;
  color: var(--thm-primary);
  text-decoration: none;
  margin-bottom: 0px;
}

.pr-body-section .pr-contact-link i {
  width: 20px;
  color: #444444;
}

.pr-body-section .pr-contact-link:hover {
  text-decoration: underline;
}

/* Press Kit Widget */
.pr-body-section .pr-kit-icon {
  font-size: 1.5rem;
  color: var(--thm-primary);
  margin-bottom: 10px;
}

.pr-body-section .pr-kit-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--thm-primary);
}

.pr-body-section .pr-kit-text {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.pr-body-section .pr-download-btn {
  background-color: #0d1f16;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.pr-body-section .pr-download-btn:hover {
  background-color: #194d33;
  color: #ffffff;
}

/* Related Releases Widget */
.pr-body-section .pr-related-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 8px;
}

.pr-body-section .pr-related-card {
  border: 1px solid #dee2e6;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 4px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s ease;
}

.pr-body-section .pr-related-card:hover {
  border-color: #6c757d;
}

.pr-body-section .pr-related-date {
  font-size: 0.65rem;
  color: #d98253;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.pr-body-section .pr-related-headline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--thm-primary);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Responsive Fix for Share tools on mobile */
@media (max-width: 768px) {
  .pr-body-section .pr-share-tools {
    flex-direction: row;
    justify-content: flex-start;
    position: static;
    margin-bottom: 25px;
    gap: 25px;
  }
}



/*    */
.exp-profile-card {
  background-color: var(--thm-primary);
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.exp-avatar-wrapper {
  background-color: #222524;
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
  max-width: 250px;
  height: 280px;
  object-fit: cover;
}

.exp-avatar-img {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  border-radius: 4px;
  object-fit: cover;
}

.exp-profile-card .exp-name {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.exp-profile-card .exp-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #a3b899;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.exp-profile-card .exp-location {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
          (exp-stat-box)
========================================================================== */
.exp-stat-box {
  background-color: #f1f3f1;
  padding: 20px 25px;
  border-radius: 4px;
  margin-bottom: 24px;
  min-height: 120px;
}

.exp-stat-box .exp-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 10px;
  line-height: 1.3;
}

.exp-stat-box .exp-stat-number .odometer {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--thm-orange);
  line-height: 1;
}

.exp-stat-box .exp-stat-icon {
  font-size: 1.8rem;
  color: #2b593f;
  margin-top: 5px;
}

/* ==========================================================================
          (exp-tech-bg)
========================================================================== */
.exp-tech-bg {
  background-color: #e9ece9;
  padding: 35px 25px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.exp-tech-bg .exp-section-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--thm-primary);
  margin-bottom: 25px;
  border-bottom: 2px solid var(--thm-primary);
  padding-bottom: 8px;
  display: inline-block;
}

.exp-tech-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.exp-tech-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #333333;
  line-height: 1.5;
}

.exp-tech-item i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #bd6a3c;
  font-size: 0.9rem;
}

.exp-social-links {
  display: flex;
  gap: 15px;
  padding-top: 15px;
}

.exp-social-links a {
  color: #555555;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.exp-social-links a:hover {
  color: var(--thm-primary);
}

/* ==========================================================================
           4. قسم أرشيف المساهمات (exp-archive-section)
           ========================================================================== */
.exp-archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.exp-archive-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--thm-primary);
  margin-bottom: 0;
}

.exp-archive-header .exp-filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777777;
}

.single-legal-researcher {
  padding: 80px 0;
  background-color: #f8f9fa;
  background: linear-gradient(to top, #fff 0%, #f8f9fa 50%);
}


/* ==========================================================================
     (ex-card-widget)
========================================================================== */
.ex-card-widget {
  background-color: #f5f6f4;
  border-radius: 12px;
  padding: 30px 30px 25px;
  max-width: 950px;
  margin: 0 auto;
  border: 1px solid #e9ece9;
}

.ex-card-img-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
}

.ex-card-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ex-card-info {
  padding-left: 10px;
}

.ex-card-name {
  color: var(--thm-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ex-card-role {
  color: #444444;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}

.ex-card-bio {
  color: #333333;
  font-size: 15px;
  max-width: 360px;
  margin-bottom: 0;
}

.ex-card-btn-link {
  color: var(--thm-orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  margin-top: 10px;
}

.ex-card-btn-link:hover {
  color: #0d3821;
}

@media (max-width: 768px) {
  .ex-card-widget {
    padding: 30px 20px;
    text-align: center;
  }

  .ex-card-info {
    padding-left: 0;
    margin-top: 20px;
  }

  .ex-card-bio {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .ex-card-link-wrapper {
    justify-content: center;
  }
}

/*  rev-ev-sidebar  */
.rev-ev-sidebar {
  background-color: #e6e8e4;
  border-radius: 12px;
  padding: 35px 25px;
  margin: 0 auto;
}

.rev-ev-main-title {
  color: var(--thm-primary);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.rev-ev-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  border: none;
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rev-ev-card:last-child {
  margin-bottom: 0;
}

.rev-ev-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rev-ev-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rev-ev-bg-gray {
  background-color: #e8ece9;
  color: var(--thm-primary);
}

.rev-ev-bg-orange {
  background-color: #fbf2eb;
  color: var(--thm-orange);
}

.rev-ev-content {
  padding-left: 15px;
}

.rev-ev-badge-label {
  color: var(--thm-orange);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.rev-ev-title {
  color: #222222;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.rev-ev-meta {
  color: #777777;
  font-size: 0.8rem;
  margin-bottom: 0;
}


/*-- (Campaign single page  --- */
.single-compain {
  background-color: #F9FAF6
}

.campaign-progress-section {
  margin-bottom: 3rem;
}

.campaign-progress-section .progress-title {
  font-size: 0.8rem;
  font-weight: bold;
  color: #6c757d;
  text-transform: uppercase;
}

.campaign-progress-section .progress-numbers {
  font-weight: bold;
  color: var(--thm-orange);
}

.campaign-progress-section .custom-progress-bar {
  height: 6px;
  background-color: #e9ecef;
  border-radius: 4px;
}

.campaign-progress-section .custom-progress-fill {
  background-color: var(--thm-orange);
  height: 100%;
  border-radius: 4px;
}

.campaign-progress-section .supporters-info {
  font-size: 0.875rem;
  color: #6c757d;
}

.campaign-progress-section .avatar-stack {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  top: 8px;

}

.campaign-progress-section .avatar-stack img {
  width: 23px;
  height: 23px;
  object-fit: cover;
  border-radius: 5px;
}

.campaign-progress-section .badge-count {
  background-color: var(--thm-primary);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
}

.campaign-details-section {
  margin-bottom: 3rem;
}

.campaign-details-section .main-title {
  color: var(--thm-primary);
  font-weight: 600;
  font-size: 55px;
  line-height: 50px;
}

@media(max-width:768px) {
  .campaign-details-section .main-title {
    font-size: 35px;
    line-height: 30px;
  }
}

.campaign-details-section .quote-container {
  background-color: #F3F4F0;
  border-left: 4px solid var(--thm-orange);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.campaign-details-section .quote-text {
  color: var(--thm-orange);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 11px;
}

.campaign-details-section .quote-author {
  color: #6c757d;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.campaign-details-section .lead-paragraph {
  color: var(--thm-primary);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
}

.campaign-details-section .description-text {
  color: #4a5568;
  line-height: 1.7;
}


.signature-form-section {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 2.5rem;
  height: 100%;
}

.signature-form-section .form-title {
  color: #052e16;
  font-weight: 700;
}

.signature-form-section .form-subtitle {
  color: #6c757d;
  font-size: 0.9rem;
}

.signature-form-section .input-field {
  background-color: #f8f9fa;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  color: #1a3322;
}

.signature-form-section .input-field:focus {
  background-color: #f1f3f5;
  box-shadow: none;
  outline: none;
}

.signature-form-section .field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.4rem;
}

.signature-form-section .privacy-notice {
  font-size: 0.75rem;
  color: #a0aec0;
  text-align: center;
}

.campaign-report-section {
  background-color: var(--thm-primary);
  color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
}

.campaign-report-section .report-header {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.campaign-report-section .report-header i {
  color: #95D4B3;
}

.campaign-report-section .document-box {
  background-color: #0a361f;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.campaign-report-section .pdf-icon {
  font-size: 2.5rem;
  color: #95D4B3;
  margin-right: 1rem;
  opacity: 0.8;
}

.campaign-report-section .document-title {
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 0rem;
}

.campaign-report-section .document-meta {
  font-size: 0.8rem;
  color: #94a3b8;
}

.campaign-report-section .report-description {
  font-size: 0.9rem;
  color: #95D4B3;
  line-height: 1.6;
}

/*  single event   */
.event-details-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  margin-top: -1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.event-details-card .info-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  margin-top: 5px;
}

.event-details-card .info-icon {
  color: #5c6f62;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  width: 33px;
}

.event-details-card .info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #8c9c90;
  letter-spacing: 0.5px;
  line-height: 15px;
}

.event-details-card .info-value {
  font-weight: 600;
  color: var(--thm-primary);
  font-size: 0.95rem;
}

/* ------ (Mandate Section)------- */
.mandate-section {
  padding: 4rem 0 2rem 0;
  background-color: #F9FAF6;
}

.mandate-section .mandate-title {
  border-left: 3px solid var(--thm-orange);
  padding-left: 0.75rem;
  color: #062f17;
  font-weight: 700;
}

.mandate-section .mandate-text {
  color: #4a5d50;
  line-height: 1.75;
  font-size: 1rem;
}


.focus-areas-section {
  padding: 2rem 0;
  background-color: #F9FAF6;
}

.focus-areas-section .focus-card {
  background-color: #f3f2eb;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}

.focus-areas-section .focus-icon-box {
  background-color: #e5e3d8;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #5c6f62;
  margin-bottom: 1.25rem;
}

.focus-areas-section .focus-card-title {
  color: var(--thm-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.focus-areas-section .focus-card-text {
  color: #5c6f62;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}


.expert-panel-section {
  padding: 3rem 0;
  background-color: #F9FAF6;
}

.expert-panel-section .expert-img {
  width: 100%;
  border-radius: 8px;
  filter: grayscale(100%);
  margin-bottom: 1rem;
  max-width: 100%;
  height: 500px;
  transition: .5s;
}

.expert-panel-section .expert-img:hover {
  filter: grayscale(0%);
}

.expert-panel-section .expert-name {
  color: var(--thm-primary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.expert-panel-section .expert-role {
  color: var(--thm-orange);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.expert-panel-section .expert-bio {
  color: #5c6f62;
  font-size: 0.88rem;
  line-height: 1.5;
}



/*session-agenda-section*/
.session-agenda h3 {
  color: #fff;
  font-weight: 600;
  font-size: 25px;
}

.session-agenda h3.dark {
  color: var(--thm-primary);
}

.session-agenda h3 i {
  font-size: 20px;
}

.session-agenda-section {
  background-color: var(--thm-primary);
  color: #ffffff;
  padding: 5rem;
}

.session-agenda-section .agenda-item {
  margin-bottom: 1.75rem;
  padding-left: 15px;
}

.session-agenda-section .agenda-item:last-child {
  margin-bottom: 0;
}

.session-agenda-section .agenda-time {
  color: var(--thm-orange);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.session-agenda-section .agenda-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #fff;
}

.session-agenda-section .agenda-desc {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}


.prerequisite-section {
  background-color: #f3f2eb;
  padding: 5rem;
  height: 100%;
}

.prerequisite-section .reading-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.prerequisite-section .reading-item:last-child {
  margin-bottom: 0;
}

.prerequisite-section .reading-icon {
  color: var(--thm-orange);
  font-size: 1.2rem;
  margin-right: 1rem;
}

.prerequisite-section .reading-link {
  color: var(--thm-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.prerequisite-section .reading-link:hover {
  text-decoration: underline;
}

.prerequisite-section .reading-meta {
  font-size: 0.75rem;
  color: #7f8e84;
  margin-left: 0.5rem;
}

@media(max-width:768px) {

  .session-agenda-section,
  .prerequisite-section {
    padding: 2rem;
  }

  .session-agenda h3 {
    font-size: 17px;
  }

  .session-agenda h3 i {
    font-size: 15px;
  }

  .prerequisite-section .reading-link {
    font-size: 0.85rem;
  }

  .session-agenda-section .agenda-title {
    font-size: 1.0rem;
  }
}

.resources-insights {
  padding: 4rem 0 2rem 0;
  background-color: #F9FAF6;

}

.resources-insights .side_contact {
  background-color: #fff;
}

.resources-insights .link_bottom span {
  background-color: #0d38210e;
  color: var(--thm-primary);
}

.new_press_center .blog-one__single-img .inner span.label {
  background-color: var(--thm-primary);
  color: #fff;
}



/*  card  */
.urgency-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.urgency-card .card-header-title {
  color: #e2b493;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.urgency-card .card-header-title i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.urgency-card .status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:  13px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.urgency-card .status-row:last-child{
  border: 0;
}


.urgency-card .status-label {
  color: #c3ced0;
  font-size: 1.1rem;
  font-weight: 400;
}

.urgency-card .status-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: monospace, sans-serif;
}

.urgency-card .number-white {
  color: #ffffff;
}

.urgency-card .number-orange {
  color: #e2b493;
}

.urgency-card .number-green {
  color: #8ccba4;
}
@media(max-width:992px) {
  .urgency-card .status-row {
    padding: 10px 13px;
    border-right: 0px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .urgency-card .status-number {
    font-size: 20px;
  }
  .urgency-card .status-label {
    font-size: 15px;
  }
  .urgency-card {
    padding: 1rem 2rem;
  }
  .urgency-card .card-header-title {
    font-size: 1rem;
  }
}