@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: 'UAEDirham';
  src: url('../assets/fonts/UAEDirham(F__SIRAJ225)-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #ffffff;
  --secondary-color: #c1c0c0;
  --accent-color: #48a8d0;
  --text-color: #1e1e1e;
  --btn-accent: rgba(72, 168, 208, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f6f6f6 !important;
  font-size: 14px;
}
body[dir="rtl"] {
  font-family: "Tajawal", sans-serif;
}
body[dir="ltr"] {
  font-family: "Montserrat", sans-serif;
}
.custom-container {
  min-height: 100vh;
  max-width: 700px !important;
  background-color: white !important;
}
nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  width: 25%;
  height: auto;
}
#socialShareBtn {
  outline: none;
  border: none;
  background-color: transparent;
  display: flex;
  background-color: var(--accent-color);
  padding: 11px 10px;
  border-radius: 90px;
  margin-left: auto;
  cursor: pointer;
}
a {
  text-decoration: none !important;
  /* text-decoration: center; */
}
.icon-shared-size,
footer img {
  width: clamp(24px, 1.4vw, 30px);
  height: clamp(24px, 1.4vw, 30px);
}
.op-icon-btn{
  width: clamp(12px, 1vw, 20px);
  height: clamp(12px, 1vw, 20px);
}
.icon-btn-modal{
  height: clamp(24px, 1.4vw, 28px);
  width:auto;
  object-fit: cover;
}

.modal-content {
  width: 70% !important;
  margin: auto;
}
footer {
  flex-wrap: wrap;
  padding: 1.2rem;
}
.socialSharContainer {
  width: 90%;
  margin: 0 auto;
}

/* User permissions */
.user-permissions {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  flex-wrap: wrap-reverse;

  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  border-radius: 12px;
  gap: 8px;
  padding: 10px 20px;
  font-size: 10px;
}

.custom-checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  background-color: transparent;
  display: inline-block;
  border-radius: 2px;
  vertical-align: middle;
  cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: transparent;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: white;
}

.checkmark svg {
  display: none;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark svg {
  display: block;
}

.footer-des {
  color: var(--secondary-color);
  font-size: clamp(14px, 0.6vw, 16px);
}

.card-initiative {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.card-initiative img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  position: relative;
  z-index: 3;
  border-top-left-radius: 130px;
}
.card-initiative h2 {
  color: white;
  background-color: var(--accent-color);
  z-index: 2;
  padding: 12px;
  font-size: 16px;
  border-radius: 0 0 20px 20px;

  text-align: center;
}
.card-initiative::before {
  position: absolute;
  content: "";
  top: 0.9px;
  left: 0;
  width: 100%;
  height: 91%;

  background-color: var(--secondary-color);
  border-radius: 20px;
  box-shadow: inset 10px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
  /* opacity: var(--before-opacity, 0); */
  transition: opacity 0.3s ease;
}
.lang-btn {
  border: none;
  outline: none;
  background-color: var(--accent-color);
  position: absolute;
  bottom: 0;

  color: white;
  padding: 6px 20px;
  font-weight: 600;
  font-size: clamp(10px, 0.6vw, 12px);
}
body[dir="ltr"] .lang-btn {
  font-family: "Tajawal", sans-serif;
  right: auto;
  left: 10px;
}
body[dir="rtl"] .lang-btn {
  font-family: "Montserrat", sans-serif;
  right: 10px;
  left: auto;
}
.bg-accent {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: white !important;
  font-size: clamp(14px, 0.6vw, 16px) !important;
  font-weight: 600;
}
.bg-secondary-color {
  background-color: var(--btn-accent) !important;
  color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  font-size: clamp(14px, 0.6vw, 16px) !important;
  font-weight: 600;
}
.btn {
  padding-left: clamp(8px,1vw,12px) !important;
  padding-right: clamp(8px,1vw,12px) !important;

}
/*=============== hero======= */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.hero-section h2 {
  width: 100%;
  text-align: center;
  padding: 8px 0;
  font-size: clamp(12px, 0.6vw, 14px);
  background-color: var(--secondary-color);
  color: white;
  font-weight: 700;
}

.body-title {
  font-size: clamp(20px, 1vw, 24px);
  text-align: center;
}
.body-text {
  text-align: center;
  font-size: clamp(14px, 0.6vw, 16px);
}
.op-icon {
  width: 32px;
  height: 32px;
}


.amount-box {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  font-size: clamp(14px, 0.9vw, 16px);
  direction: ltr !important; 

}
.dirham-symbol {
  font-family: 'UAEDirham', sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
}