@charset "UTF-8";

@font-face {
  font-family: "Bahij TheSansArabic Plain";
  src: url("../font/BahijTheSansArabic-Plain.woff2") format("woff2"),
    url("../font/BahijTheSansArabic-Plain.woff") format("woff"),
    url("../font/BahijTheSansArabic-Plain.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bahij TheSansArabic";
  src: url("../font/BahijTheSansArabic-SemiBold.woff2") format("woff2"),
    url("../font/BahijTheSansArabic-SemiBold.woff") format("woff"),
    url("../font/BahijTheSansArabic-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bahij TheSansArabic SemiLight";
  src: url("../font/BahijTheSansArabic-SemiLight.woff2") format("woff2"),
    url("../font/BahijTheSansArabic-SemiLight.woff") format("woff"),
    url("../font/BahijTheSansArabic-SemiLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Fonts */
:root {
  --default-font: "Bahij TheSansArabic Plain";
  --heading-font: "Bahij TheSansArabic Plain";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #013c28;
  /* Color for headings, subheadings and title throughout the website */
  --primary-color: #013c28;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --secondary-color: #b9ed4b;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000000;
  /* The default color of the main navmenu links */
  --nav-hover-color: #013c28;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #013c28;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--primary-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  direction: rtl;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

hr {
  border-color: rgba(1, 60, 40, 1) !important;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1340px !important;
  }
}

.btn-white,
.btn-primary,
.btn-secondary,
.btn-danger,
.btn-outline,
.btn-secondary-form {
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 50px !important;
  transition: 0.3s;
}

.btn-white,
.btn-secondary,
.btn-outline,
.btn-secondary:hover,
.btn-outline:hover,
.btn-secondary-form {
  color: var(--primary-color);
}

.btn-outline {
  border: 1px solid var(--primary-color);
}

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

.btn-primary {
  color: var(--secondary-color);
  background: var(--primary-color);
}

.btn-danger {
  background: rgba(169, 29, 43, 1);
  color: var(--contrast-color);
}

.btn-secondary,
.btn-secondary-form {
  background: var(--secondary-color);
}

.btn-primary:hover {
  color: var(--secondary-color);
}
.text-primary {
  color: var(--primary-color) !important;
}

.modal-header .btn-close {
  font-size: 13px;
}

.modal-header img {
  cursor: pointer;
}

#SuccessModal {
  color: var(--primary-color);
}

#DangerModal {
  color: rgba(24, 24, 27, 1);
}

#SuccessModal p,
#DangerModal p,
#SuccessShareModal p {
  margin: 18px 0 4px 0;
  font-weight: 600;
  font-size: 1.3rem;
}

#SuccessShareModal .link-d-work {
  background: rgba(241, 241, 241, 1);
}

#SuccessShareModal .link-d-work {
  color: rgba(71, 71, 71, 1);
}

#SuccessShareModal .link-d-work a {
  font-weight: 600;
  color: var(--primary-color);
}

.modal-header strong {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-color);
}

#JoinUs a {
  display: block;
  border-top: 1px solid rgba(1, 60, 40, 0.162);
  padding: 17px 0;
}

#JoinUs a:first-child {
  border-width: 2px;
}

#ChooseAmount .content,
#PaymentFees .content,
#PaymentMethod .content,
#PaymentCard .content,
#Contribution .content,
#InvestmentChoose .content,
#HelpTeam .content,
#ConfirmInvestment .content {
  border-top: 1px solid rgba(1, 60, 40, 0.162) !important;
}

#Contribution .btn-secondary {
  padding: 13px !important;
}

#ShareCodeModal .btn-primary {
  color: var(--contrast-color);
}

#ShareCodeModal .content .box {
  border-radius: 10px;
  background: var(--primary-color);
  color: var(--contrast-color);
}

#Contribution .content {
  height: 26em;
  overflow-y: auto;
}

#ShareCodeModal .d-grid {
  grid-template-columns: 1fr 1fr;
}

#ChooseAmount {
  color: var(--primary-color);
}

.btn-danger:hover {
  color: var(--contrast-color);
}

#SpeedShare .form-control {
  color: rgba(128, 128, 128, 1);
}

#SpeedShare .form-control:hover,
#SpeedShare .form-control:focus,
#SpeedShare .form-control {
  background: transparent;
  border-color: transparent !important;
}

#SpeedShare .copy {
  border-radius: 10px;
  background: rgba(241, 241, 241, 1);
}

#SpeedShare .copy button {
  color: rgba(128, 128, 128, 1);
  border-right-color: rgba(184, 184, 184, 1) !important;
  border-radius: 0;
}

#SpeedShare .copy button:hover {
  background: transparent;
  border-color: transparent !important;
  border-right-color: rgba(184, 184, 184, 1) !important;
}

#SpeedShare .copy label {
  color: rgba(184, 184, 184, 1);
  font-size: 12px;
  margin: 5px 15px -12px 5px;
}

#SpeedShare .modal-body strong {
  font-weight: 600;
}

#SpeedShare .modal-body span {
  display: block;
  font-size: 14px;
  color: rgba(163, 179, 173, 1);
  padding-top: 3px;
}

.socail-share-icons .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(233, 236, 225, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.socail-share-icons p {
  margin-bottom: 0;
}

.socail-share-icons:hover {
  color: var(--primary-color);
}

#ChooseAmount .btn-close,
#PaymentFees .btn-close,
#PaymentMethod .btn-close,
#PaymentCard .btn-close,
#HelpTeam .btn-close,
#ConfirmInvestment .btn-close {
  margin: 0;
}

#ChooseAmount strong,
#HelpTeam strong {
  font-weight: 600;
}

#JoinUs a:hover {
  color: var(--primary-color);
}

#ChooseAmount .btns,
#HelpTeam .btns {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#ChooseAmount button,
#HelpTeam button {
  padding-top: 17px;
  padding-bottom: 17px;
  border-radius: 10px !important;
  font-size: 17px;
}

#ChooseAmount .form-group .form-control,
#HelpTeam .form-group .form-control {
  border-radius: 10px;
  font-size: 2.5rem;
  padding: 8px 28px 8px 8px !important;
  direction: rtl;
}

#ChooseAmount label {
  font-weight: 600;
}

#ChooseAmount .form-control,
#PaymentCard .form-control,
#HelpTeam .form-control {
  background: transparent !important;
}

#ChooseAmount .form-check-label {
  color: var(--primary-color);
  font-weight: 600;
}

#ChooseAmount .form-group,
#HelpTeam .form-group {
  position: relative;
}

#ChooseAmount .form-group span,
#HelpTeam .form-group span {
  color: rgba(99, 99, 99, 1);
  font-size: 1.5rem;
  position: absolute;
  top: 20px;
  right: 10px;
}

#ChooseAmount .btn-check:checked + .btn,
#ChooseAmount .btn.active,
#ChooseAmount .btn.show,
#ChooseAmount .btn:first-child:active,
:not(.btn-check) + .btn:active,
.btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color) !important;
}

.btn-outline-success {
  color: var(--primary-color);
  border-color: var(--primary-color) !important;
}

#JoinUs p {
  font-size: 1.2rem;
  transition: 0.3s all;
}

#JoinUs a:hover p {
  transform: translateX(-3px);
}

#PaymentFees p {
  color: rgba(24, 24, 27, 1);
}

#PaymentFees .radio-group {
  grid-template-columns: 1fr 1fr;
}

/* A little extra styling to give each "box" a clear outline */
#PaymentFees .option-box {
  border: 2px solid var(--primary-color);
  /* Bootstrap "success" color */
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
  font-size: 1.2rem;
  width: 100%;
}

#PaymentFees .option-box:hover {
  background-color: #013c2816;
}

/* Hide the default radio button circle */
#PaymentFees .form-check-input[type="radio"] {
  display: none;
}

#PaymentFees .form-check-input:checked + .option-box {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  border-color: var(--primary-color);
}

#PaymentFees .option-box {
  border-width: 1px !important;
}

#PaymentMethod .modal-body strong {
  font-size: 17px;
  color: rgba(24, 24, 27, 1);
}

#PaymentMethod small {
  color: rgba(24, 24, 27, 1);
}

#InvestmentChoose strong {
  color: rgba(24, 24, 27, 1);
  font-size: 16px;
}

#InvestmentChoose small {
  color: rgba(156, 156, 156, 1);
}

#ConfirmInvestment .campaign-item img {
  height: 70px;
  border-radius: 8px;
}

#ConfirmInvestment .campaign-item p {
  font-weight: 600;
}

#ConfirmInvestment .campaign-item span {
  display: block;
  padding-top: 2px;
}

#ConfirmInvestment strong {
  font-size: 18px;
}

#ConfirmInvestment .investment-fees p {
  color: rgba(24, 24, 27, 1);
  font-weight: 600;
}

#ConfirmInvestment .total-fees span {
  font-weight: 600;
}

@media (max-width: 991px) {
}

@media (max-width: 768px) {
  #ShareCodeModal .btn-primary,
  #ShareCodeModal .btn-secondary {
    justify-content: center !important;
  }
  #PaymentFees .option-box {
    padding: 0.8rem;
  }

  .modal-header strong,
  .register-title {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 575px) {
  #SpeedShare .copy button {
    padding: 5px 6px 5px 10px;
    font-size: 15px;
  }
}

/*===========================
    02. Header CSS
===========================*/
/*===== NAVBAR =====*/
.navbar-area {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
  padding: 0;
}
.navbar-area {
  border-bottom: 1px solid rgba(1, 60, 40, 0.1);
}
.index-page .navbar-area {
  border-bottom-color: transparent !important;
}

.navbar-area.header-3 {
  background: #fff;
}

.sticky {
  position: fixed;
  z-index: 99;
  background: #3763eb;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
  background: #fff;
  padding: 0px 0;
}

.sticky .navbar {
  padding: 10px 0;
}

.navbar {
  padding: 20px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-toggler {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler .toggler-icon {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  margin: 4px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 5px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(5, 20, 65, 0.1);
    padding: 5px 12px;
    max-height: 350px;
    overflow-y: scroll;
  }
}

.navbar-nav .nav-item {
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-item:hover a {
  color: var(--secondary-color);
}

.navbar-nav .nav-item a {
  font-size: 16px;
  color: var(--primary-color);
  transition: all 0.3s ease-out 0s;
  position: relative;
  padding: 20px;
  display: inline-flex;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a {
    padding: 20px 15px;
  }

  .navbar-nav .nav-item .sub-menu li:first-child a {
    border-radius: 0 !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item a {
    color: #051441;
    display: flex;
    justify-content: start;
    padding: 10px 0;
  }

  .navbar-nav .nav-item a.dd-menu {
    padding-right: 0 !important;
  }
}

.navbar-nav .nav-item a.active {
  color: #3763eb;
}

.navbar-nav .nav-item a.dd-menu {
  padding-right: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu {
    padding-right: 30px;
  }
}

.navbar-nav .nav-item a.dd-menu::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-inline-start: 3px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu::after {
    left: 13px;
  }
}

@media (max-width: 992px) {
  .navbar-nav .nav-item a.dd-menu::after {
    position: absolute;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item a.dd-menu::after {
    top: 16px;
    left: 0;
    transform: rotate(180deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item a.collapsed::after {
    transform: rotate(0deg);
  }
}

.navbar-nav .nav-item:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar-nav .nav-item:hover > .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.navbar-nav .nav-item .sub-menu {
  min-width: 340px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  padding: 0;
}

.navbar-nav .nav-item .sub-menu.left-menu {
  left: -100%;
}

.navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  display: block;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 20px;
  height: 20px;
  top: -10px;
  left: 20%;
  transform: rotate(45deg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }

  .navbar-nav .nav-item .sub-menu::after {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu > li {
  display: block;
  margin-left: 0;
}

.navbar-nav .nav-item .sub-menu > li:last-child {
  border: none;
}

.navbar-nav .nav-item .sub-menu > li.active > a,
.navbar-nav .nav-item .sub-menu > li:hover > a {
  color: #3763eb;
}

.navbar-nav .nav-item .sub-menu > li > a {
  font-weight: 400;
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--primary-color);
  border-top: 1px solid rgba(1, 60, 40, 0.086);
}

.navbar-nav .nav-item .sub-menu > li > a strong {
  font-weight: 500;
  font-size: 1.1rem;
  padding-inline-start: 2px;
}

.navbar-nav .nav-item .sub-menu > li > a p {
  margin-bottom: 0;
  padding-top: 4px;
}

.navbar-nav .nav-item .sub-menu > li > a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

.navbar-nav .nav-item .sub-menu li:first-child a {
  border-radius: 20px 20px 0 0;
  border-top: 0;
}

.icon-header {
  background: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  scroll-margin-top: 90px;
  overflow: clip;
  color: var(--contrast-color);
  background-color: var(--primary-color);
  font-size: 14px;
}

.footer .footer-top {
  padding: 60px 0 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.134);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.footer .footer-about .logo img {
  height: 90px;
}

.footer .footer-about p {
  font-size: 16px;
  font-family: var(--accent-color);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 1px solid var(--contrast-color);
  font-size: 16px;
  color: var(--contrast-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #baed4b16;
  border-color: #b9ed4b;
}

.footer h4 {
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-left: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: var(--contrast-color);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  transform: translateX(-4px);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 0 0 25px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .copyright a {
  color: var(--contrast-color);
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer .col-4 {
    padding-inline-start: 30px;
  }

  .footer .footer-top {
    padding: 60px 0 40px 0;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
  border: 5px solid #ffffff;
  border-color: var(--secondary-color) transparent var(--primary-color)
    transparent;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  animation: animate-preloader 1.5s linear infinite;
}
#preloader img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

@media (max-width: 575px) {
  section,
  .section {
    padding: 45px 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
}

.section-title strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  font-family: var(--heading-font);
  margin: 0;
  color: var(--primary-color);
  margin-top: 10px;
}

.section-title p {
  margin-bottom: 0;
  color: var(--primary-color);
  padding-top: 10px;
}

@media (max-width: 768px) {
  .section-title strong {
    font-size: 1.7rem;
  }
}

@media (max-width: 992px) {
  .section-title .badge {
    width: 12em;
  }

  .section-title .row {
    justify-content: center;
    text-align: center;
  }

  .section-title p {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Global Form Input
--------------------------------------------------------------*/
.form-control {
  background: var(--Color-Gray-900, rgba(241, 241, 241, 1));
  border: 1px solid var(--Color-Gray-800, rgba(212, 212, 212, 1));
  padding: 0.875rem 0.75rem !important;
}

.form-control::placeholder {
  color: var(--Color-Gray-500, rgb(156, 156, 156));
}

.form-control:focus {
  box-shadow: none !important;
  outline: 0 !important;
  border-color: var(--primary-color);
}

button[type="submit"],
.submit {
  color: var(--primary-color) !important;
  background: var(--secondary-color);
  border: 0;
  padding: 10px 40px;
  transition: 0.4s;
  border-radius: 8px;
}

.have-acount {
  color: rgba(128, 128, 128, 1);
}

/*--------------------------------------------------------------
# Global Modal
--------------------------------------------------------------*/
.btn-close:focus {
  box-shadow: none !important;
}

.modal .nav-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

.modal .nav-link {
  width: 100% !important;
}

.btn-close:hover {
  color: rgba(237, 28, 36, 1) !important;
}

.register-title {
  display: block;
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
}

.social-btn {
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  display: block;
  text-align: center;
  padding: 9px;
}

.social-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.divider {
  display: flex;
  align-items: center;
  margin: 1.2em 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

/* Optional: style the centered text */
.divider span {
  color: #0f3f2f;
  font-size: 1.1em;
  padding: 0 10px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
}

.checkbox-container input[type="checkbox"] {
  accent-color: #0f3f2f;
  margin: 0.25em 0 0 0;
}

.form-check-label {
  font-size: 14px;
  color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem #013c2833;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(#013c28b0, #013c28b4),
    url("../img/hero.webp");
  border-radius: 20px;
  padding: 210px 80px 80px 80px;
}

.hero .hero-content h1 {
  color: var(--contrast-color);
  font-size: 3.2rem;
}

.hero .hero-content h1 span {
  color: var(--secondary-color);
}

.hero .campaign-hero {
  border-radius: 20px;
  background: var(--background-color);
  display: block;
  position: relative;
  z-index: 0;
  border: 2px solid transparent;
}

.badge {
  border-radius: 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  display: inline-block;
  font-weight: 300;
  font-size: 15px;
}

.hero .progress {
  height: 10px;
}

.hero .progress-bar {
  background: var(--secondary-color);
}

.hero .campaign-hero h2 {
  font-size: 25px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: var(--primary-color);
  padding-bottom: 4px;
}

.hero .campaign-hero .arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}

.hero .campaign-hero .donor-no {
  font-weight: 500;
  font-size: 18px;
}

.hero .campaign-hero:hover .arrow {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.hero .campaign-hero:hover {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .campaign-hero {
    margin-top: 4.5em;
  }
}

@media (max-width: 768px) {
  .hero .bg {
    padding: 100px 20px 20px 20px;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content h1,
  .hero .hero-content p {
    text-align: center;
  }

  .hero .campaign-hero h2 {
    font-size: 1.3rem;
  }

  .badge {
    font-size: 13px;
  }

  .hero .hero-content p {
    font-size: 1.2rem;
    padding: 0 25px;
  }

  .hero .campaign-hero .donor-no {
    font-size: 1rem;
  }

  .hero .campaign-hero .arrow {
    width: 42px;
    height: 42px;
  }

  .campaign-hero p {
    font-size: 0.9rem;
  }

  .btn-white,
  .btn-primary,
  .btn-secondary,
  .btn-danger,
  .btn-outline,
  .btn-secondary-form {
    font-size: 13px;
    padding: 13px 22px !important;
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 575px) {
}

/*--------------------------------------------------------------
# Home - Clients
--------------------------------------------------------------*/
.clients {
  padding: 30px 0;
  color: var(--primary-color);
}

.clients .swiper-wrapper {
  transition-timing-function: linear !important;
}

.clients .swiper-wrapper img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  margin-inline-end: 8px;
}

.clients .swiper-wrapper p {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 18px;
}

.clients h3 {
  font-size: 2.8rem;
  margin-top: 60px;
}

.clients span {
  color: #013c285e;
}

@media (max-width: 768px) {
  .clients {
    padding: 0 0 30px 0;
  }

  .clients h3 {
    font-size: 1.8rem;
    margin-top: 60px;
    line-height: 45px;
  }
}

/*--------------------------------------------------------------
# Leaders Section
--------------------------------------------------------------*/
.leaders {
  color: var(--primary-color);
}

.leaders .section-title {
  padding-bottom: 80px;
}

.leaders .leader img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.leaders .swiper img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.leaders .leader p,
.leaders .swiper p {
  font-family: var(--heading-font);
  font-size: 18px;
}

.leaders .leader span {
  display: block;
  padding: 0 15px;
}

.leaders .swiper-slide {
  text-align: center;
}

.leaders .swiper p {
  padding-top: 8px;
  margin-bottom: 2px;
}

.leaders .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.leaders .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #013c2819;
  opacity: 1;
}

.leaders .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Stories Section
--------------------------------------------------------------*/
.stories .bg {
  background: var(--primary-color);
  border-radius: 20px;
}

.stories .main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.stories .slider-title {
  font-weight: 400;
  font-size: 2rem;
  padding: 0 80px;
}

.stories .stories-title {
  padding: 80px 80px 100px 80px;
}

.stories .container-fluid {
  padding: 0 80px 80px 12px;
}

.stories .bg {
}

.stories h4 {
  font-size: 2.8rem;
}

.stories p {
  font-size: 1.2rem;
}

.stories h4,
.stories p {
  color: var(--contrast-color);
}

.stories {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.stories h3 {
  font-size: 2.2rem;
}

.stories .outline-btn {
  border-color: var(--white-color);
}

.stories .outline-btn:hover {
  background: #ffffff15;
}

.stories .opportunity-carousel,
.stories .opportunity-slider {
  overflow: hidden;
}

.stories-item {
  display: block;
  border-radius: 20px;
  box-sizing: content-box;
  background: var(--background-color);
}

.stories-item .main-img {
  width: 100%;
  height: 100%;
}

.stories-item strong {
  font-size: 1.2rem;
  display: block;
  font-weight: 500;
  padding-top: 17px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stories-item .arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}

.stories-item .donor-no {
  font-weight: 600;
  font-size: 16px;
}

.stories-item:hover .arrow {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.stories-item:hover {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .stories .stories-title {
    padding: 50px 36px 70px 36px;
  }

  .stories h4 {
    font-size: 2.2rem;
  }

  .stories p {
    font-size: 1.1rem;
  }

  .stories .slider-title {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .stories .stories-title {
    padding: 50px 22px 60px 22px;
  }

  .stories .slider-title {
    padding: 0 21px;
  }

  .stories h4 {
    font-size: 1.7rem;
  }

  .stories p {
    font-size: 1rem;
  }

  .stories .slider-title {
    font-size: 1.7rem;
  }

  .stories .container-fluid {
    padding: 0px 23px 80px 12px;
  }

  .stories-item strong {
    font-size: 1.2rem;
  }

  .stories-item .donor-no {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Campaign Item
--------------------------------------------------------------*/
.campaign-items {
  background: rgba(233, 236, 225, 1);
  border-radius: 20px;
  padding: 15px;
  color: var(--primary-color);
  display: block;
  position: relative;
  z-index: 0;
  border: 2px solid transparent;
}

.campaign-items:before,
.campaign-items:after,
.campaign-hero:before,
.campaign-hero:after {
  content: "";
  position: absolute;
  inset: -2px;
  transition: all 0.5s;
  animation: clippath 3s infinite linear;
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
}

.campaign-items:before,
.campaign-items:after {
  border: 2px solid #baed4bab;
}

.campaign-hero:before,
.campaign-hero:after {
  border: 2px solid #baed4b;
}

.campaign-items:after,
.campaign-hero:after {
  animation: clippath 3s infinite -1.5s linear;
}

.campaign-items:hover:before,
.campaign-items:hover:after,
.campaign-hero:hover:before,
.campaign-hero:hover:after {
  opacity: 1;
}

@keyframes clippath {
  0%,
  to {
    clip-path: inset(0 0 98% 0);
  }

  25% {
    clip-path: inset(0 98% 0 0);
  }

  50% {
    clip-path: inset(98% 0 0 0);
  }

  75% {
    clip-path: inset(0 0 0 98%);
  }
}

.campaign-items .main-img {
  width: 100%;
  height: 250px;
  border-radius: 17px;
  object-fit: cover;
}

.campaign-items .badges {
  top: 10px;
  right: 10px;
}

.campaign-items .title {
  font-size: 1.2rem;
  font-weight: 600;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.campaign-items .btn-primary {
  color: #fff;
}

.campaign-items .progress {
  height: 10px;
}

.campaign-items .progress-bar {
  background: var(--secondary-color);
}

.campaign-items .donor-no {
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 768px) {
  .campaign-items .title {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Mubadarat Section
--------------------------------------------------------------*/

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--primary-color) !important;
  border-bottom: 3px solid #013c28 !important;
  font-weight: 600;
}

.nav-tabs {
  border-color: rgba(1, 60, 40, 0.332) !important;
}

.nav-tabs .nav-link {
  border: 0 !important;
  color: rgba(99, 99, 99, 1);
}

/*--------------------------------------------------------------
# Why us Section
--------------------------------------------------------------*/
.why-us-box {
  border-radius: 20px;
  background: rgba(233, 236, 225, 1);
  color: var(--primary-color);
  transition: 0.3s all;
}
/* .why-us-box:hover{
  border: 1px solid #013c2832;
  box-shadow: 0px 0px 30px #013c2832;
} */
.why-us-box p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.why-us-box span {
  font-size: 15px;
}
/*--------------------------------------------------------------
# Urgent Help Section
--------------------------------------------------------------*/
.urgent-help .arrow,
.blogs .arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  background: var(--background-color);
  margin-right: auto;
}

.urgent-help .main-box,
.urgent-help .box,
.blogs .main-box,
.blogs .box {
  width: 100%;
  border-radius: 20px;
  padding: 30px 20px;
  margin-right: auto;
  display: block;
}

.urgent-help .main-box:hover .arrow,
.urgent-help .box:hover .arrow,
.blogs .main-box:hover .arrow,
.blogs .box:hover .arrow {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}
.blogs .box {
  padding: 30px 20px 15px 20px;
}

.blogs .box small {
  font-size: 13px;
}

.blogs .badge {
  background: var(--primary-color);
  color: rgba(233, 236, 225, 1);
}

.urgent-help .col-lg-3 div,
.blogs .col-lg-3 div {
  width: 100%;
}

.urgent-help .main-box,
.blogs .main-box {
  position: relative;
}

.urgent-help .main-box strong,
.blogs .main-box strong {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--contrast-color);
}

.urgent-help .box,
.blogs .box {
  height: 270px;
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .urgent-help .main-box,
  .urgent-help .box,
  .blogs .main-box,
  .blogs .box {
    height: 25em;
    text-align: center;
  }

  .urgent-help .main-box strong,
  .blogs .main-box strong {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .urgent-help .main-box,
  .urgent-help .box {
    height: 20em;
  }

  .blogs .main-box,
  .blogs .box {
    height: 23em;
  }

  .blogs .box {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Home - Latest News
--------------------------------------------------------------*/
.latest-news {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--white-color);
}

.latest-news h5 {
  font-size: 2.2rem;
}

.latest-news .main-article {
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  color: var(--contrast-color);
}

.latest-news .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.latest-news .main-article strong {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 28px;
  font-weight: 600;
  color: var(--white-color);
}

/* .latest-news .card-title{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
} */
/* .latest-news .sidebar-article img{
  height: 90%;
} */

.latest-news .main-article:hover .img img {
  transform: scale(1.1);
}

.latest-news img {
  object-fit: cover;
  height: 200px;
  border-radius: 20px;
}

.sidebar-article .card:hover {
  background: #013c2811;
  border-radius: 20px;
}

.latest-news .card-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-color);
}

.latest-news .card-description {
  color: #9c9c9c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.latest-news .badge:not(.section-title .badge) {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding-left: 30px;
  padding-right: 30px;
}

.latest-news small {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .latest-news .main-article {
    height: 30em;
    width: 100%;
  }

  .latest-news .main-article strong {
    font-size: 1.3rem;
  }

  .latest-news .card-title {
    font-size: 1.2rem;
  }

  .latest-news .badge {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 768px) {
  .latest-news .main-article {
    height: 28em;
  }
}

/*--------------------------------------------------------------
# Blog details Page
--------------------------------------------------------------*/
/* Pale green background for the top banner/breadcrumb */
.top-banner {
  background-color: rgba(233, 236, 225, 1);
  /* Adjust as needed */
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.article-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(233, 236, 225, 1);
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
  background: rgba(233, 236, 225, 1);
}

.article-social-links a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.article-social-links a:hover path {
  fill: #e9ece1;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, "|") !important;
  color: rgba(163, 179, 173, 1);
}

.breadcrumb-item a {
  color: rgba(163, 179, 173, 1);
}

.blog-title h1 {
  font-size: 3.7rem;
  font-weight: 600;
}

.blog-title .badge {
  background: rgba(233, 236, 225, 1) !important;
}

.blog-details .main-img {
  border-radius: 20px;
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.article-content {
  color: rgba(24, 24, 27, 1);
  font-size: 18px;
}

.article-content p,
.article-content strong,
.article-content li {
  color: rgba(24, 24, 27, 1);
}

.blog-details .main-article {
  height: 500px;
}

@media (max-width: 768px) {
  .breadcrumb-item.active.breadcrumb-item::before {
    display: none;
  }
  .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
    padding-inline-start: 0;
  }
  .blog-details .main-article {
    height: 450px;
  }

  .blog-title h1 {
    font-size: 2rem;
    font-weight: 600;
  }

  .blog-details .main-img {
    height: 40vh !important;
  }
}

@media (max-width: 575px) {
  .blog-title h1 {
    font-size: 1.8rem;
  }

  .article-content {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Campaign details Page
--------------------------------------------------------------*/
.campaign-title {
  padding-bottom: 25px;
}

.main-content .campaign-img {
  width: 100%;
  border-radius: 20px;
  height: 33em;
  object-fit: cover;
}

.campaign-card {
  color: var(--primary-color);
}

.campaign-details .campaign-card,
.campaign-details .related-compagnies {
  border-radius: 20px;
  background: rgba(233, 236, 225, 1);
  color: var(--primary-color);
}

.campaign-card .num {
  font-size: 2.8rem;
  font-weight: 600;
}

.campaign-card .progress,
.campaign-header .progress {
  height: 8px;
  background: rgba(209, 217, 214, 1);
}

.campaign-card .progress-bar,
.campaign-header .progress-bar {
  background: var(--primary-color);
}

.campaign-card .d-grid,
.campaign-header .d-grid {
  grid-template-columns: 1fr 0.5fr;
}

.campaign-card .btn-primary {
  color: var(--contrast-color);
}

.campaign-card .btn-primary,
.campaign-card .btn-secondary {
  padding: 15px !important;
}

.campaign-card .show-all strong {
  font-size: 1.1rem;
}

.campaign-card .contributors p {
  font-size: 17px;
}

.related-compagnies h4 {
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
}

.related-compagnies .mini-img {
  height: 110px;
  border-radius: 10px;
}

.related-compagnies p {
  color: rgba(29, 29, 32, 1);
  margin-bottom: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-compagnies .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}

.campaign-header {
  background: rgba(233, 236, 225, 1);
  color: var(--primary-color);
}

.campaign-header .btn-secondary,
.campaign-header .btn-primary {
  /*  padding: 15px 30px !important; */
}

.campaign-header .nav-tabs {
  border-bottom: none;
}

.campaign-header .nav-link {
  border: none !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  color: #848484;
  position: relative;
  font-weight: 500 !important;
}

.campaign-header .nav-link:hover {
  color: #495057;
}

.campaign-header .nav-link.active {
  color: #003d2f;
  font-weight: bold;
}

.campaign-header .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 4px;
  background-color: #003d2f;
  border-radius: 4px 4px 0 0;
}

.tab-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
}

.campaign-header .nav-tabs .nav-link.active {
  border: 0 !important;
}

.comments div p:first-child {
  color: var(--primary-color);
}

.report,
.report:hover {
  color: rgba(169, 29, 43, 1);
  font-size: 1.3rem;
}

.whats-new .imgs img,
.box-more-imgs {
  width: 100%;
  height: 14em;
  border-radius: 17px;
  object-fit: cover;
}
.box-more-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: var(--contrast-color);
}

.box-more-imgs span {
  font-size: 2.2rem;
}

.box-more-imgs:hover {
  color: var(--contrast-color);
}

@media (max-width: 767px) {
  .campaign-card .btn-primary,
  .campaign-card .btn-secondary {
    justify-content: center !important;
  }
  .main-content .campaign-img {
    height: 17em;
  }

  .campaign-details h1 {
    font-size: 1.5rem;
  }

  .campaign-title span {
    font-size: 14px;
  }

  .campaign-content h3 {
    font-size: 1.2rem;
  }

  .report,
  .report:hover {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
.about-hero h1 {
  font-size: 3.3rem;
}

.about-hero p {
  color: var(--primary-color);
  font-size: 17px;
}

.about-hero .bg {
  border-radius: 20px;
  height: 60vh;
}

/* Message & Vision */
.message-vision .badge {
  padding: 12px 45px;
  background: #e9ece1;
  color: var(--primary-color);
}

.message .box,
.vision .box {
  display: block;
  background: var(--secondary-color);
  border-radius: 20px;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision {
  margin-top: 70px;
}

.vision .box {
  width: 100%;
  background: var(--primary-color);
  height: 17.3em;
}

.vision .box-num {
  background: var(--secondary-color);
}
.vision .box-num span {
  color: var(--primary-color);
  -webkit-text-stroke: 2px var(--primary-color);
}
.vision .box img {
  border-radius: 20px;
}

.message .box-num {
  background: var(--primary-color);
  color: var(--contrast-color);
}

.message .box-num span {
  -webkit-text-stroke: 2px white;
}

.message .box-num span,
.vision .box-num span {
  display: block;
  font-size: 6rem;
  color: transparent;
}

.message .box-num p {
  color: var(--contrast-color);
  text-align: start;
}

.message .col-12 img {
  border-radius: 20px;
}

.message h2 {
  font-size: 3rem;
}

/* Value */

.our-value .section-title .badge {
  background: var(--primary-color);
  color: var(--contrast-color);
}

.our-value .box {
  background: rgba(233, 236, 225, 1);
  border-radius: 20px;
  color: var(--primary-color);
  height: 24em;
  transition: 0.3s all;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.our-value .box p,
.our-value .box:hover span{
  display: none;
}

.our-value .box:hover {
  background: var(--primary-color);
  color: var(--contrast-color);
  align-items: center;
}

.our-value .box:hover p {
  font-size: 1.8rem;
  display: block;
}
.our-value .box span{
    font-size: 1.8rem;
}

.our-value .box:hover svg path {
  fill: var(--contrast-color);
}

.our-value .box strong {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Slider */

.team-slider {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-slider h3 {
  font-size: 2.2rem;
}

.team-item {
  border-radius: 10px;
  box-sizing: content-box;
  min-height: 450px;
  position: relative;
}

.team-item .text-white {
  z-index: 2;
  position: absolute;
}

.team-slider .swiper-wrapper {
  height: auto;
}

.team-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.team-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.team-slider .custom-next-arrow,
.team-slider .custom-prev-arrow {
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s all;
}

/* , .team-slider .custom-next-arrow,
.team-slider .custom-prev-arrow
 */
.team-slider .custom-prev-arrow img {
  transform: rotate(180deg);
}

.team-slider .custom-next-arrow:hover,
.team-slider .custom-prev-arrow:hover {
  /*   background: var(--primary-color);
 */
  border-color: #013c2845;
}

.team-slider .badge {
  padding: 12px 45px;
  background: var(--primary-color);
  color: var(--contrast-color);
}

.team-name {
  background: rgba(233, 236, 225, 1);
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  color: var(--primary-color);
}

/* Counter */
.counter-box {
  background: var(--primary-color);
  height: 80vh;
  color: var(--contrast-color);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s all;
}

.counter-box p {
  font-size: 1.2rem;
  margin-top: -17px;
}

.counter-box span {
  font-size: 4.4rem;
  font-weight: 600;
}

.counter-box:hover {
  background: rgba(71, 71, 71, 1);
}

.hidden-text {
  opacity: 0;
  transition: 0.3s all;
  font-size: 2px;
  padding: 0;
}

.counter-box:hover p {
  margin-bottom: 50px;
}

.counter-box:hover .hidden-text {
  opacity: 1;
  padding: 2px 11px 30px 15px;
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .about-hero .bg {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .team-slider {
    padding: 10px 0;
  }

  .about-hero h1,
  .team-slider h3 {
    font-size: 2rem;
  }

  .message h2,
  .vision h2 {
    font-size: 1.8rem;
  }

  .about-hero .bg {
    height: 35vh;
  }

  .vision .box {
    height: 14em;
  }
}

@media (max-width: 575px) {
  .message h2 {
    margin-bottom: 0;
  }
  .about-hero .bg {
    height: 30vh;
  }

  .message .box-num span,
  .vision .box-num span {
    font-size: 4rem;
  }

  .vision .box {
    height: 12em;
  }
  .message .box,
  .vision .box {
    height: 23vh;
  }
}

/*--------------------------------------------------------------
# Transparency Page
--------------------------------------------------------------*/
.transparency-counter .counter-box {
  height: auto;
}

.transparency-counter .counter-box span {
  font-size: 2.5rem;
  font-weight: 600;
}

.transparency-counter .counter-box p {
  margin: 0;
}

.investment-box {
  border-radius: 10px;
  background: rgba(233, 236, 225, 1);
  padding: 28px 33px;
}

.investment-box strong {
  display: block;
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 600;
  padding-top: 10px;
}

.investment-box span {
  color: rgba(72, 103, 90, 1);
  font-size: 1.1rem;
}

.transparency-counter .counter-box:hover {
  background: var(--primary-color) !important;
}

.table thead tr th {
  color: var(--primary-color);
  background-color: rgba(233, 236, 225, 1);
  font-weight: 600;
  padding: 15px;
  font-size: 15px;
}

.table tbody tr td {
  padding: 15px;
  font-size: 15px;
  color: rgba(24, 24, 27, 1);
}

.table thead tr th:first-child {
  border-radius: 0 10px 0 0;
}

.table thead tr th:last-child {
  border-radius: 10px 0 0 0;
}

.table tbody tr td:first-child {
  border-right: 1px solid #dee2e6;
}

.table tbody tr td:last-child {
  border-left: 1px solid #dee2e6;
}

.table tbody a {
  color: rgba(24, 24, 27, 1);
  text-decoration: underline;
}

@media (max-width: 575px) {
  .counter-box {
    height: 60vh;
  }
}

/*--------------------------------------------------------------
# Partners Page
--------------------------------------------------------------*/
.search-group {
  position: relative;
}

.search-group img {
  position: absolute;
  right: 20px;
  bottom: 19px;
}

.search-group .form-control::placeholder {
  color: rgba(71, 71, 71, 1);
}

.search-group .form-control {
  padding-inline-start: 45px !important;
  border-radius: 30px !important;
  border-color: transparent !important;
}

.search-group .form-control:focus {
  border-color: rgba(71, 71, 71, 0.07) !important;
  background: rgba(241, 241, 241, 1);
}

.partners-imgs {
  padding-top: 70px;
  color: var(--primary-color);
}

.partners-imgs img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}

.partners-imgs strong {
  padding-top: 10px;
  display: block;
}

.partner-card {
  background: rgba(233, 236, 225, 1);
  border-radius: 20px;
  padding: 18px;
}

.partner-card img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: contain;
}

.partner-card strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.partner-card .card-header span {
  color: rgba(163, 179, 173, 1);
}

.partner-card .card-header {
  border-bottom: 1px solid rgba(1, 60, 40, 0.195);
}

.partner-card .card-body p {
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  margin-bottom: 0;
}

.partner-card .card-body span {
  display: inline-block;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Sections Page
--------------------------------------------------------------*/
.section-card {
  border-radius: 20px;
  background: rgba(233, 236, 225, 1);
}

@media (min-width: 992px) {
  .row-cols-lg-8 > * {
    flex: 0 0 auto;
    width: 12.5%;
  }
}

.category-box {
  cursor: pointer;
}

/* Example styling for each box */
.category-box .icon {
  background-color: #eef0e8;
  border-radius: 20px;
  padding: 2.8rem 1rem;
  text-align: center;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  /* ensures uniform height in grid */
}

.category-box:hover .icon {
  background-color: #e2e5db;
}

.category-label {
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.category-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

@media (max-width: 575px) {
  .category-box .icon {
    padding: 2rem 1rem;
  }
  .category-label {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# contact Page
--------------------------------------------------------------*/
.contact .main-img {
  width: 100%;
  border-radius: 20px;
}

.contact-form-footer {
  padding-top: 10vh;
}

.contact-form .form-control {
  background: transparent !important;
}

.contact-form-footer span,
.contact-form-footer a {
  color: rgba(24, 24, 27, 1);
}

.contact-form-footer a {
  font-weight: 600;
}

.contact-form-footer strong {
  color: var(--primary-color);
}

.contact-form .nice-select {
  border-radius: var(--bs-border-radius) !important;
  border: 1px solid var(--Color-Gray-800, rgba(212, 212, 212, 1)) !important;
  padding: 0.875rem 0.75rem !important;
  background: transparent !important;
  line-height: 24px;
}

.contact-form .nice-select:after {
  border-color: var(--primary-color) !important;
}

.contact-form input::placeholder,
.contact-form .nice-select,
.contact-form textarea::placeholder {
  color: var(--primary-color);
}

.contact-form h3 {
  font-size: 2.2rem;
}

@media (max-width: 992px) {
  .contact .main-img {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .contact .main-img {
    height: 60vh;
  }
}

@media (max-width: 575px) {
  .contact .main-img {
    height: 35vh;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.accordion-button::after {
  display: none !important;
}

.accordion-button.plus-icon::before {
  content: "+";
  margin-inline-end: 1rem;
  font-size: 1.25rem;
  left: 0;
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: end;
  border: 1px solid rgba(24, 24, 27, 1);
  line-height: 21px;
}

.accordion-button.plus-icon[aria-expanded="true"]::before {
  content: "–";
}

.accordion-button {
  background-color: transparent;
  box-shadow: none !important;
  color: rgba(24, 24, 27, 1);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 20px 0;
}

.accordion-body,
.accordion-button {
  padding-inline-start: 0;
  padding-bottom: 30px;
}

.accordion-button:not(.collapsed) {
  color: inherit;
  background-color: transparent;
  margin-bottom: 0 !important;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid #ccc;
}

.accordion-item:last-of-type {
  border-radius: 0 !important;
}

.faq hr {
  margin: 80px 0;
}

@media (max-width: 575px) {
  .accordion-button {
    font-size: 1rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  margin: 15vh 0 5vh 0;
}

.call-to-action .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(#013c28b0, #013c28b4),
    url("../img/cta.webp");
  border-radius: 20px;
  padding: 80px;
}

.call-to-action .cta-content h2 {
  font-size: 3rem;
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .call-to-action .cta-content {
    text-align: center;
    margin-bottom: 0;
  }

  .call-to-action .cta-image {
    text-align: center;
  }

  .call-to-action .bg {
    padding: 150px 50px;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-content h2 {
    font-size: 3.3rem;
  }

  .call-to-action .bg {
    padding: 150px 35px;
    background-position: 35%;
  }

  .call-to-action .btn-secondary {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px !important;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 .bg {
  background: var(--primary-color);
  padding: 80px 30px;
  border-radius: 20px;
}

.call-to-action-2 h1 {
  color: var(--secondary-color);
  padding-bottom: 4px;
}

.call-to-action-2 p {
  color: var(--contrast-color);
}

.call-to-action-2 .btn-secondary {
  display: inline-flex;
  justify-content: space-between;
  margin-top: 15px;
  width: 100%;
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 {
  padding: 33vh 0;
  background: var(--secondary-color);
}

.call-to-action-3 h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 575px) {
  .call-to-action-3 {
    padding: 30vh 0;
  }

  .call-to-action-3 h1 {
    font-size: 1.9rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--primary-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--primary-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Nice Select
--------------------------------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--primary-color);
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: right;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 53px;
  line-height: 53px;
  outline: none;
  padding-right: 18px;
  padding-left: 30px;
  position: relative;
  text-align: right !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  color: var(--contrast-color);
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: var(--primary-color);
}

.nice-select:after {
  border-bottom: 2px solid var(--contrast-color) !important;
  border-right: 2px solid var(--contrast-color) !important;
  content: "";
  display: block;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  left: 20px;
  right: inherit;
  top: 48%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 8px;
  height: 8px;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
  color: var(--primary-color);
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-right: 18px;
  padding-left: 29px;
  text-align: right;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #03673316;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.circle-container {
  position: relative;
  width: 100%;
  height: 705px;
  margin: -60px auto;
  color: var(--primary-color);
}
.top-10 {
  border-top: 2px solid rgba(1, 60, 40, 0.159);
  border-bottom: 2px solid rgba(1, 60, 40, 0.159);
  padding: 0;
}
@media (max-width: 992px) {
  .top-10 {
    border: 0;
  }
}

.circle-container strong {
  font-size: 3rem;
  font-weight: 600;
}

.circle-container p .initiators p {
  font-size: 1.1rem;
  font-weight: 600;
}

.initiators {
  color: var(--primary-color);
}

.initiators strong {
  font-size: 2.3rem;
}

.initiators p {
  font-size: 1.1rem;
}

.initiators {
  text-align: center;
}

.initiators .swiper-slide img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

/* Center text block */
.circle-container .center-text {
  position: absolute;
  top: 50%;
  /* 50% of 700px => 350px down */
  left: 50%;
  /* 50% across the container */
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 400px;
}

/* Circular images */
.circle-img {
  position: absolute;
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/*
  New center: (50%, 350px)
  New radius: 300px
  Angles: 0°, 36°, 72°, 108°, 144°, 180°, 216°, 252°, 288°, 324°.
  Formula:
    top  = 350px - (300px * cos(angle))
    left = 50%   + (300px * sin(angle))  // "plus" for all angles 0..360
               ^ We keep "plus" for the entire circle to revolve around center.
                 If you need half of them on the left side, you'd do minus for angles > 180°, etc.
*/

/* angle = 0° => sin(0)=0, cos(0)=1 */
.img-1 {
  top: calc(350px - (300px * 1));
  /* 350 - 300 = 50 */
  left: calc(50% + (300px * 0));
  /* 50% + 0 = 50% */
}

/* angle = 36° => sin(36)=0.5878, cos(36)=0.8090 */
.img-2 {
  top: calc(350px - (300px * 0.809));
  /* 350 - 242.7 = 107.3 */
  left: calc(50% + (300px * 0.5878));
  /* 50% + 176.34 => ~50% +176px */
}

/* angle = 72° => sin(72)=0.9511, cos(72)=0.3090 */
.img-3 {
  top: calc(350px - (300px * 0.309));
  /* 350 - 92.7 = 257.3 */
  left: calc(50% + (300px * 0.9511));
  /* 50% + 285.33 => ~50% +285px */
}

/* angle = 108° => sin(108)=0.9511, cos(108)=-0.3090 */
.img-4 {
  top: calc(350px - (300px * -0.309));
  /* 350 + 92.7 = 442.7 */
  left: calc(50% + (300px * 0.9511));
  /* 50% + 285.33 => ~50% +285px */
}

/* angle = 144° => sin(144)=0.5878, cos(144)=-0.8090 */
.img-5 {
  top: calc(350px - (300px * -0.809));
  /* 350 + 242.7 = 592.7 */
  left: calc(50% + (300px * 0.5878));
  /* 50% + 176.34 => ~50% +176px */
}

/* angle = 180° => sin(180)=0, cos(180)=-1 */
.img-6 {
  top: calc(349px - (300px * -1));
  /* 350 + 300 = 650 */
  left: calc(50% + (300px * 0));
  /* 50% + 0 => 50% */
}

/* angle = 216° => sin(216)=-0.5878, cos(216)=-0.8090 */
.img-7 {
  top: calc(350px - (300px * -0.809));
  /* 350 + 242.7 = 592.7 */
  left: calc(50% + (300px * -0.5878));
  /* 50% - 176.34 => ~50% -176px */
}

/* angle = 252° => sin(252)=-0.9511, cos(252)=-0.3090 */
.img-8 {
  top: calc(350px - (300px * -0.309));
  /* 350 + 92.7 = 442.7 */
  left: calc(50% + (300px * -0.9511));
  /* 50% - 285.33 => ~50% -285px */
}

/* angle = 288° => sin(288)=-0.9511, cos(288)=0.3090 */
.img-9 {
  top: calc(350px - (300px * 0.309));
  /* 350 - 92.7 = 257.3 */
  left: calc(50% + (300px * -0.9511));
  /* 50% - 285.33 => ~50% -285px */
}

/* angle = 324° => sin(324)=-0.5878, cos(324)=0.8090 */
.img-10 {
  top: calc(350px - (300px * 0.809));
  /* 350 - 242.7 = 107.3 */
  left: calc(50% + (300px * -0.5878));
  /* 50% - 176.34 => ~50% -176px */
}

.circle-img {
  transition: top 1s ease-in-out, left 1s ease-in-out;
  position: absolute; /* Ensure it moves properly */
}

/* ******************************************** */

.container-box {
  padding: 0 20px;
  position: relative;
  /* height: 89vh; */
}
.container-box .container-footer {
 /*  position: absolute;
  bottom: 0;
  left: 0; */
  padding: 15px 10px;
  background: var(--background-color);
  width: 100%;
}
.container-box .container-footer .btn-secondary {
  border-radius: 10px !important;
  width: 16em;
  padding: 0.9rem;
}

.container-box .nice-select {
  border-radius: var(--bs-border-radius) !important;
  border: 1px solid var(--Color-Gray-800, rgba(212, 212, 212, 1)) !important;
  padding: 0.875rem 0.75rem !important;
  line-height: 24px;
  background: var(--Color-Gray-900, rgba(241, 241, 241, 1));
  color: var(--Color-Gray-500, rgb(156, 156, 156));
}
.container-box .nice-select:after {
  border-color: var(--Color-Gray-500, rgb(156, 156, 156)) !important ;
}
.sidebar h1 {
  font-size: 2rem;
}
.sidebar img {
  padding-bottom: 5em;
}
.container-box .text-muted {
  color: rgba(163, 179, 173, 1) !important;
  font-size: 14px;
}
.sidebar {
  background: rgba(233, 236, 225, 1);
  padding: 20px;
  border-radius: 20px;
 /*  min-height: 93.5vh; */
  height: 93.5vh;
}
.btn-custom {
  background-color: #c4f12a;
  border: none;
}
.btn-option {
  background-color: #f1f3f5;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 20px;
}
.add-member:not(:last-child) {
    border-bottom: 1px solid var(--Color-Gray-800, rgba(212, 212, 212, 1));
    margin-bottom: 12px;

}
/* A little extra styling to give each "box" a clear outline */
.container-box .option-box {
  border: 2px solid rgba(209, 217, 214, 1);
  border-radius: 30px;
  padding: 0.6rem 2.4rem;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
  font-size: 0.9rem;
  color: rgba(163, 179, 173, 1);
}

/* Hover state - lighter background */
.container-box .option-box:hover {
  background-color: #013c280a;
  color: var(--primary-color);
  border-color: rgba(163, 179, 173, 0.8);
}

/* Selected state - darker background and border */
.container-box .form-check-input:checked + .option-box {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  border-color: var(--primary-color);
}

/* Hide the default radio button circle */
.container-box .form-check-input[type="radio"] {
  display: none;
}

.container-box .option-box {
  border-width: 1px !important;
}
@media (max-width: 992px) {
  .sidebar h1 {
    font-size: 1.3rem;
  }
  .sidebar {
    height: 100%;
  }
  .container-box {
    padding: 0 0 80px 0;
    height: auto;
  }

  .container-box .option-box {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .container-box .container-footer .btn-secondary {
    display: inline-block;
  }
  .container-box .container-footer {
    padding: 15px 0;
  }
  .sidebar img {
    padding-bottom: 3.5em;
  }
  .drag-drop-box {
    height: 20em !important;
  }
  #step-6 h1 {
    font-size: 1.3rem !important;
  }
  #step-6 h3 {
    font-size: 1.2rem !important;
  }
  #step-6 .campaign-img {
    height: 18em !important;
  }
}

.step-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}
.step-sidebar {
  background-color: #e9ecef;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}
.step-content {
  flex-grow: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-left: 20px;
}
.step-button {
  width: 100%;
  text-align: start;
  padding: 15px;
  border: none;
  background-color: #e9ecef;
  margin-bottom: 10px;
  border-radius: 5px;
}
.step-button.active {
  background-color: #c3e6cb;
}

.step {
  display: none;
}
.active-step {
  display: block;
}

.prev-btn {
  background: rgba(233, 236, 225, 1);
  padding: 0.6em;
  border-radius: 10px;
}

.who-is-mubadra .option-box {
  text-align: start;
  border-radius: 10px;
  background-color: rgba(209, 217, 214, 0.5);
  display: block;
  padding: 0.9rem;
}
.who-is-mubadra .option-box p {
  margin-bottom: 0;
}
.who-is-mubadra .option-box strong {
  color: rgba(72, 103, 90, 1);
  font-size: 1.2rem;
}

/* Hover state for who-is-mubadra */
.who-is-mubadra .option-box:hover {
  background-color: rgba(209, 217, 214, 0.7);
  color: var(--primary-color);
}

/* Selected state for who-is-mubadra */
.who-is-mubadra .form-check-input:checked + .option-box {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  border-color: var(--primary-color);
}

.drag-drop-box {
  display: flex;
  border: 2px dashed rgba(209, 217, 214, 1);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgba(163, 179, 173, 1);
  height: 22em;
}
 .group-char-count , .group-textarea-char-count {
  position: relative;
}
#step-3 .group-char-count .counter {
  position: absolute;
  left: 16px;
  top: 16px;
  font-weight: bold;
}
#step-4 .group-char-count .counter , #step-6 .group-char-count .counter {
  position: absolute;
  left: 16px;
  bottom: 0;
  font-weight: bold;
}
.group-textarea-char-count .counter{
  position: absolute;
  left: 20px;
  bottom: 0px;
  font-weight: bold;
}
#step-5 .form-check-label{
 color: #013C28;
 font-size: 16px;
 padding-top: 5px;
 padding-inline-start: 8px;

}
#step-5 .form-check-input{
 width: 1.4em;
 height: 1.4em;
 border-radius: 6px;
}
#step-7 .campaign-header {
  background: var(--primary-color);
  border-radius: 10px;
}
#step-7 .campaign-preview .content {
  height: 60vh;
  overflow-y: auto;
}
#step-7 .campaign-preview {
  padding: 20px 10px 20px 7px;
  background: #003d2f0c;
  border-radius: 10px;
}

#step-7 h1 {
  font-size: 1.8rem;
}
#step-7 h3 {
  font-size: 1.3rem;
}
#step-7 .campaign-card {
  background: rgba(233, 236, 225, 1);
  border-radius: 20px;
}
#step-7 .campaign-card span {
  font-size: 0.8rem;
}
#step-7 .campaign-card p {
  font-size: 0.7rem;
}
#step-7 .campaign-card .btn-primary,
#step-7 .campaign-card .btn-secondary {
  padding: 9px 14px !important;
}
#step-7 .campaign-card .show-all strong,
#step-7 .campaign-card .show-all a {
  font-size: 0.9rem;
}
#step-7 .campaign-card .contributors img {
  height: 30px;
}
#step-7 .campaign-card .contributors p {
  background: rgba(209, 217, 214, 1);
  color: rgba(209, 217, 214, 1);
}
#step-7 .campaign-card .contributors p:first-child {
  display: inline-block;
}
#step-7 .campaign-card .num {
  font-size: 2rem;
}
#step-7 .campaign-img {
  height: 25em;
}
.cke_chrome {
  border-radius: var(--bs-border-radius) !important;
}
.cke_inner {
  border-radius: var(--bs-border-radius) !important;
}
.cke_top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.cke_bottom {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.sidebar ul {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.sidebar ul li {
  height: 4px;
  background: rgba(255, 255, 255, 1);
  border-radius: 30px;
}
.sidebar ul li.text-primary {
  background: var(--primary-color);
}


.create-checking-account textarea::placeholder , .create-checking-account input::placeholder , .create-checking-account .nice-select .current , .create-checking-account input[type="date"]{
 color: var(--primary-color);
}
.create-checking-account .container-box .content{
  height: 75vh;
  overflow-y: auto;
}

.create-checking-account .sidebar ul {
    grid-template-columns: 1fr 1fr 1fr 1fr ;
}
.create-checking-account #step-4 textarea::placeholder{
  color: rgba(128, 128, 128, 1);
}


/*  */
    .upload-box {
      border: 1px solid #E5E7EB;
      border-radius: 8px;
      padding: 1.5rem 1rem;
      text-align: center;
      position: relative;
      min-width: 160px;
      height: 120px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: #FAFAFA;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .upload-box:hover {
      background-color: #F3F4F6;
      border-color: #D1D5DB;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .upload-box i {
      font-size: 24px;
      color: #9CA3AF;
      margin-bottom: 8px;
    }

    .upload-box div:last-child {
      font-size: 12px;
      color: #6B7280;
      font-weight: 500;
      line-height: 1.3;
    }

    .upload-box .remove-btn {
      position: absolute;
      top: -8px;
      right: -8px;
      background-color: #EF4444;
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: 2px solid white;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease;
    }

    .upload-box .remove-btn:hover {
      background-color: #DC2626;
      transform: scale(1.1);
    }

    .upload-box.file-selected {
      border-color: #10B981;
      background-color: #F0FDF4;
    }

    .upload-box.file-selected i {
      color: #10B981;
    }

    .upload-box.file-selected div:last-child {
      color: #059669;
    }
    .add-team-btn{
      width: 45px;
      height: 45px;
      font-size: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--heading-color);
      border-radius: 50%;
    }
    .add-team-btn i {
      line-height: 0;
    }
    .bi-trash3{
      color: #dc3545;
      font-size: 27px;
    }

    .form-switch .form-check-input{
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
      width: 3.5rem;
      height: 2em;
    }
