@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
:root {
  --primary-color: #135E6C;
  --bs-secondary-rgb: #474747;
  --light-color: #acacac;
  --text-color: #313242;
  --background-color: #ffffff;
  --font-size-20: clamp(1rem, 2.5vw, 1.25rem);
  --font-size-40: clamp(1.5rem, 2.5vw, 2.5rem);
  --font-size-32: clamp(1.3rem, 2.5vw, 2rem);
  --font-size-heading: clamp(1.6rem, 4vw, 2.4rem);
  --font-size-extra: clamp(2rem, 4vw, 5rem);
  --font-size-16: clamp(0.875rem, 2vw, 1rem);
  --bs-body-font-family: "Sora", sans-serif;
}
* {
  box-sizing: border-box;
}
.text-primary{
  color: var(--primary-color) !important;
}
.text-muted{
  color: #ACACAC !important;
}
.fw-bolder{
  font-weight: 800 !important;
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
}
h2 {
  font-size: var(--font-size-heading) !important;
}
p {
  color: var(--text-color);
}
.bg-Tertiary {
  background-color: #f2f2f2;
}
::placeholder {
  color: var(--bs-tertiary-color) !important;
  font-weight: 400 !important;
}
#contactForm ::placeholder {
  color: #ACACAC !important;
}
.modal-body {
  padding: 0rem !important;
}
.text-base {
  color: var(--text-color);
}
.text-accent {
  color: var(--primary-color);
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.icon-size-20 {
  width: clamp(18px, 2.5vw, 20px);
}
.icon-size-40 {
  width: clamp(30px, 4vw, 40px);
  height: clamp(30px, 4vw, 40px);
}
.size-72-res {
  width: clamp(50px, 5vw, 72px);
  height: clamp(50px, 5vw, 72px);
}
.font-size-18 {
  font-size: clamp(16px, 2.5vw, 18px);
}
.font-size-40 {
  font-size: var(--font-size-40) !important;
}
.font-size-32 {
  font-size: var(--font-size-32) !important;
}
.icon-size-28 {
  width: clamp(24px, 2.5vw, 28px);
  height: clamp(24px, 2.5vw, 28px);
}
.icon-size-36 {
  width: clamp(30px, 4vw, 36px);
  height: clamp(30px, 4vw, 36px);
}
.font-size-20 {
  font-size: var(--font-size-20);
}
/* navbar====================== */
.logo {
  width: 165px;
  height: auto;
  object-fit: cover;
}
.btn-demo {
  border: 1px solid var(--primary-color);
  border-radius: 44px;
  padding: 0.6em 1.2em;
  position: relative;
  overflow: hidden;
  color: white;
  font-size: var(--font-size-16) !important;
  transition: color 0.3s ease-in-out;
  font-weight: 600;
}
.btn-demo span {
  position: relative;
  z-index: 9;
}
.btn-demo::before,
.btn-demo::after {
  content: "";
  position: absolute;
  top: 0;
  width: 52%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 1;
  transition: transform 0.4s ease-in-out;
}

.btn-demo::before {
  left: 0;
  transform: translateX(0);
}

.btn-demo::after {
  right: 0;
  transform: translateX(0);
}

.btn-demo:hover::before {
  transform: translateX(-100%);
}

.btn-demo:hover::after {
  transform: translateX(100%);
}

.btn-demo:hover {
  color: #125c66;
  border: 1px solid var(--primary-color);
}
.nav-item {
  font-weight: 600;
}
.nav-link {
  color: var(--text-color) !important;
  position: relative;
  padding: 0 !important;
  font-size: var(--font-size-16) !important;
}
.nav-link:not(.active):after {
  content: "";
  width: 0;
  height: 0;
  transition: all 0.3s linear;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
}
.nav-link:hover:after {
  width: 100%;
  height: 2px;
}
.nav-link.active {
  color: var(--primary-color) !important;
}
.custom-toggler {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.custom-toggler .toggler-icon {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.custom-toggler .toggler-icon span {
  display: block;
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}

.custom-toggler.open .toggler-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.custom-toggler.open .toggler-icon span:nth-child(2) {
  opacity: 0;
}

.custom-toggler.open .toggler-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
@media screen and (max-width:992px) {
  .offcanvas-body .nav-link:hover::after {
    width: 5px;
    height: 100%;
    left: -0.9rem;
  }
}
/* shared */
h1 {
  font-weight: 800;
  font-size: var(--font-size-extra) !important;
  line-height: 1.2em;
}
.hero-par {
  text-align: center;
  color: #313242;
}
.highlighted-text {
  position: relative;
  padding: 0 0.06em;
  display: inline-block;
}

.highlighted-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 100%;
  height: 0.28em;
  background-color: rgba(19, 94, 108, 0.5);
  z-index: -1;
}
/* shared */
.btn-accent {
  border: none;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 44px;
  padding: 0.6em 1.2em;
  position: relative;
  color: white;
  font-size: var(--font-size-16) !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.btn-accent:hover {
  border: 1px solid var(--primary-color);
  filter: brightness(0.9);
}
/* shared */
.par-shared {
  font-size: var(--font-size-16) !important;
  color: var(--text-color);
}
.hero-par {
  font-size: var(--font-size-20) !important;
}

@media screen and (min-width: 992px) {
  .mt-lg-6 {
    margin-top: 5rem !important;
  }
  .w-lg-60 {
    width: 60% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  /* Mass sending by 
  WhatsApp section */
  .w-lg-73 {
    width: 100% !important;
  }
  .w-lg-55 {
    width: 55% !important;
  }
  
  
}
@media screen and (min-width: 1200px) {
  .w-lg-73 {
    width: 73% !important;
  }
  .w-lg-63 {
    width: 63% !important;
  }
  .mt-lg-section {
    margin-top: 5.5rem !important;
  }
  .rounded-lg-44 {
    border-radius: 44px !important;
  }
  .rounded-lg-28 {
    border-radius: 28px !important;
  }
  .col-xl-hf-7 {
    width: 59.33333333%;
  }
  .col-xl-hf-5 {
    width: 40.66666667%;
  }
  .modal-body {
    padding: 0rem !important;
  }
}

/* =========form modal ===== */
.form-control {
  padding: 0.7em 1.2em;
  font-size: var(--font-size-16);
  border-radius: 44px;
  transition: border-color 0.3s linear;
}

.custom-select {
  position: relative;
  width: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
}

.select-trigger {
  padding: 0.7em 1.2em;
  border: 1px solid var(--bs-border-color);
  border-radius: 44px;
  font-size: var(--font-size-16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.3s;
}
.custom-select.active .select-trigger {
  border-color: var(--primary-color);
}

.arrow {
  width: clamp(18px, 2.5vw, 20px);
  height: clamp(18px, 2.5vw, 20px);
  transition: transform 0.3s;
}

.custom-select.active .arrow {
  transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: 101%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10;
  padding: 0.2em 0.3em;
}
.list-dropdown {
  width: 100%;
  max-height: 200px;
  margin-top: 0.3em;
  padding: 0.1em 0.3em;
  list-style: none;
  overflow-y: auto;
  scrollbar-color: var(--primary-color) #f1f1f1;
  scrollbar-width: thin;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.list-dropdown::-webkit-scrollbar {
  width: 8px;
  border-radius: 12px;
}

.list-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 12px;
  padding-top: 10px;
  margin-bottom: 10px;
}

.list-dropdown::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.custom-select.active .select-options {
  display: flex;
}

.select-options li {
  padding: 0.7em 1.2em;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s linear;
}

.select-options li:hover {
  background-color: #ecfcff;
}

.select-options li.selected {
  background: #ecfcff;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}
.form-control.textarea-elem {
  border-radius: 12px !important;
  resize: none;
}

.modal {
  background: rgba(34, 34, 34, 0.1);
  backdrop-filter: blur(17.5px);
}
.modal-content {
  border-radius: 20px;
}
.form-des {
  color: var(--light-color);
}
.send-btn {
  font-size: var(--font-size-16);
  font-weight: 600;
  min-width: 170px;
  width: 24%;
  border: none;
  padding: 0.7em 0;
  gap: 0.4em;
  background-color: var(--primary-color);
  color: white;
  border-radius: 44px;
  transition: all 0.5s linear;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.send-btn:disabled {
  background-color: #ccc;
}

.send-btn svg {
  position: absolute;
  opacity: 0;
  transform: translate(-100%);
  transition: all 0.5s ease;
}

.send-btn:hover svg {
  position: static;
  opacity: 1;
  transform: translate(0%);
}
.send-btn:disabled svg {
  opacity: 0;
  position: absolute;
  opacity: 0;
  transform: translate(-100%);
}
/* toggle========== */
.toggle-container {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-container small {
  color: gray;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease forwards;
  display: block;
}

.fade-out {
  animation: fadeOut 0.3s ease forwards;
  display: none;
}
.form-check-input {
  height: 1.9em;
}

.form-switch .form-check-input {
  width: 3.5em;
}
.form-switch input.form-check-input:checked {
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,1.0)'/></svg>");
}
.form-check-input:focus {
  box-shadow: none;
  border: 1px solid var(--primary-color);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(0,0,0,0.25)'/></svg>");
}

@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 916px;
  }
}

footer {
  background-color: #1c1c1c;
  position: relative;
}
.btn-demo-footer {
  width: fit-content !important;
  border: 1px solid white;
  background-color: white;
  border-radius: 44px;
  padding: 0.6em 1.2em;
  position: relative;
  overflow: hidden;
  color: var(--text-color);
  font-size: var(--font-size-16) !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.btn-demo-footer:hover {
  color: white;
  border: 1px solid white;
}
footer ul * {
  color: #d9d9d9 !important;
}
footer ul.links-list a {
  transition: all 0.3s linear;
}
footer ul.links-list a:hover {
  margin-left: 8px;
  color: var(--primary-color) !important ;
}
#backToTop {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: clamp(30px, 50px, 70px);
  height: clamp(30px, 50px, 70px);
  border: 0.3rem solid #313242;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.btn-contact {
  border: 1px solid var(--text-color);
  background-color: transparent;
  color: var(--text-color);
  border-radius: 44px;
  padding: 0.6em 1.4em;
  text-decoration: none;
  font-size: var(--font-size-16) !important;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.btn-contact:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.charity-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.charity-logos img {
  max-width: 100%;
  width: auto;
  height: clamp(60px, 4.5vw, 82px);
}

@media (max-width: 576px) {
  .charity-logos div {
    width: 45%;
    text-align: center;
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .charity-logos div {
    width: 30%;
    text-align: center;
  }
}

@media (min-width: 993px) {
  .charity-logos div {
    width: 18%;
    text-align: center;
  }
}

/* footer before  */

.footer-before {
  position: relative;
  overflow: hidden;

  background: linear-gradient(90deg, #135e6c 0%, rgb(0, 51, 60) 49.6%);
}
.content-footer-before {
  position: relative;
  z-index: 4;
}
.content-footer-before h2,
.content-footer-before p {
  color: #ebf1ff;
}
.gradient-shape {
  position: absolute;

  /* border-radius: 30px; */
}

.shape1 {
  width: 58.17vw;
  aspect-ratio: 1/1;

  left: 35vw;
  top: 11vw;

  background: linear-gradient(180deg, #3ae0ff00 0%, #3fe1ff80 100%);
  transform: rotate(27.59deg);
}

.shape2 {
  width: 58.17vw;
  aspect-ratio: 1/1;
  left: -30vw;
  top: 1vw;

  background: linear-gradient(180deg, #3fe1ff00 0%, #3fe1ff 100%);
  transform: rotate(27.59deg);
}
@media screen and (max-width: 1800px) {
  .shape1 {
    width: 100vw;
    aspect-ratio: 1/1;
  
    left: 26vw;
    top: 60%;
  

  }
  
  .shape2 {
    width:100vw;
    aspect-ratio: 1/1;
    left: -85vw;
    top: 0%;
  

  }
}
@media screen and (max-width: 992px) {

  .shape1 {
    width: 100vw;
    aspect-ratio: 1/1;
  
    left: 35vw;
    top: 60%;
  

  }
  
  .shape2 {
    width:100vw;
    aspect-ratio: 1/1;
    left: -85vw;
    top: 50%;
  

  }
}
#contactForm label{
  font-weight: 400;
  margin-bottom: 0.5rem;
}
