
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

:root {
    --main-color: #095757;
    --bg-color: #e7e7e7d0;
    --second-color: #1A2526;
    --text-color: #141414f5;
    --btn-color: #b93c68;
    --hover-color: #752a44;
    --hover1-color: #033333d8;

    --big-font: 4.1rem;
    --h2-font: 2.8rem;
    --p-font: 1.1rem;
    --icon-font: 1.2rem;

    --width: 350px;
    --height: 350px;
    --quantity: 10;
}

html {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}
html::after {
    content: "";
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    pointer-events: none;
    background-image: url(https://res.cloudinary.com/dam6cl8k0/image/upload/v1757047200/canva_pknsme.png);
    background-position: center;
    background-size: 100vw;
}
html, body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
     display: none; /* Chrome, Safari, Edge */
}
body {
    font-family: "Poppins", sans-serif;
    width: 100vw;
    overflow: hidden;
    overflow-y: scroll;
    background-position: center;
    background-size: cover;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--bg-color);
    padding-top: 150px;
}
/* ------------ Preloader section ------------------- */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.loader-container {
  position: relative;
  width: 120px;
  height: 120px;
}
.Logo {
  width: 120px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid var(--second-color);
  border-top: 5px solid var(--main-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* ----------- Loading Action ----------- */
#loading-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6);
    display: flex; align-items: center; justify-content: center; z-index: 1000; display: none;
}
#loading-overlay .loader{ text-align: center; color: var(--bg-color);}
#loading-overlay .loader i { font-size: 2.5rem; color: #095757; margin-bottom: 20px; display: block;}
#loading-overlay .dots { display: flex; justify-content: center; gap: 12px;}
.dots span { width: 12px; height: 12px; background: #4da6ff; border-radius: 50%; animation: bounce 1.2s infinite;}
.dots span:nth-child(2) { animation-delay: 0.2s;}
.dots span:nth-child(3) { animation-delay: 0.4s;}
.dots span:nth-child(4) { animation-delay: 0.6s;}
@keyframes bounce { 
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5;}
    40% { transform: scale(1.2); opacity: 1;}
}
/* ------ Arlet Custom ---- */
#custom-arlet { display: none;}
.arlet-overlay {
    position: fixed; top: 5%; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: none;
    display: flex; justify-content: center; align-items: center; z-index: 1000; animation: fadIn 0.3s ease-in-out;
}
.arlet-box { background: var(--bg-color); padding: 20px 25px; border-radius: 15px; width: 350px; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, .3); animation: slideUp 0.3s ease-in-out;}
.arlet-box h3 { margin: 0 0 10px; font-size: 1.2rem; color: var(--hover1-color);}
.arlet-box p { font-size: var(--p-font); color: var(--text-color); margin-bottom: 20px;}
.arlet-box button { 
    background: var(--hover-color); color: var(--text-color); border: none; padding: 10px 20px; border-radius: 8px;
    cursor: pointer; font-weight: bold; transition: background 0.3s ease;
}
.arlet-box button:hover { background: var(--main-color);}
@keyframes fadIn {
    from { opacity: 0;} to { opacity: 1;}
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0;}
    to { transform: translateY(0); opacity: 1;}
}

/* ======== The header ================= */
header {
    position: fixed;
    background: var(--bg-color);
    z-index: 2;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: wrap;
}
.logo img {
    height: auto;
    width: 160px;
}
.slogan img {
    height: 30px;
    width: auto;
    margin-left: 20px;
}
.col-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    gap: 20px;
}
.item1 .donate {
    background: var(--btn-color);
    color: var(--text-color);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}
.item1 .donate:hover {
    background: var(--bg-color);
}
.item1 .donate i {
    margin-left: 5px;
    color: var(--main-color);
}
.item1 .donate:hover i {
    color: var(--bg-color);
    transform: translateX(5px);
}
.col-item2 .social-icons {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 10px;
}
.social-icons li a {
    padding:5px 8px 5px 8px;
    background-color: var(--main-color);
    color: var(--text-color);
    font-size: 18px;
    transition: color 0.3s;
}
.social-icons li a:hover {
    color: var(--hover-color);
}
.social-icons li a i {
  color: var(--second-color);
}
.social-icons li a:hover i {
    transform: translateY(-3px);
}
nav {
    background: #1A2526;
    width: 100%;
}
.nav-menu {
    padding: 10px 0;
    display: flex;
    justify-content: center;
}
.menu-header ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.menu-header ul li a {
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}
.menu-header ul li a:hover {
    color: var(--btn-color);
    transform: translateY(-3px);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--main-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* ==================== Welcoming the Donations ================== */
.hero {
  display: flex;
  height: 450px;
  background-image: url(https://res.cloudinary.com/dam6cl8k0/image/upload/v1757047230/hero_ke7yog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: brightness(80%);
  position: relative; margin-top: 5rem;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  animation: fadeInLeft 1s ease-out;
}

.hero-text h1 {
  font-family: 'Caveat', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-color);
}

.hero-text h1 i {
  font-size: 3.7rem;
  animation: float 2s ease-in-out infinite, glow 1.5s linear infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes glow {
  0% {
    color: var(--bg-color);
    text-shadow: 0 0 5px var(--bg-color), 0 0 10px var(--bg-color);
  }
  25% {
    color: var(--hover-color);
    text-shadow: 0 0 5px var(--btn-color), 0 0 10px var(--hover-color);
  }
  50% {
    color: var(--bg-color);
    text-shadow: 0 0 5px var(--bg-color), 0 0 10px var(--bg-color);
  }
  75% {
    color: var(--btn-color);
    text-shadow: 0 0 5px var(--hover-color), 0 0 10px var(--btn-color);
  }
  100% {
    color: var(--bg-color);
    text-shadow: 0 0 5px var(--bg-color), 0 0 10px var(--bg-color);
  }
}
.hero-text .highlight {
  font-family: 'Caveat', sans-serif;
  color: var(--main-color);
}
.hero-text p {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  font-family: 'Caveat', sans-serif;
}
.btn-start {
  position: absolute;
  bottom: 20px;
  right: 30px;
  background: var(--btn-color);
  color: var(--text-color);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-start:hover {
  background: var(--hover1-color);
  color: var(--bg-color);
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 40px;
}

.feature-box {
  background: var(--hover-color);
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.feature-box h3 {
  font-family: 'Caveat', sans-serif;
  font-size: 1.8rem;
}
.feature-box:hover {
  transform: translateY(-5px);
  background-color: var(--bg-color);
  color: var(--main-color);
}

.counter-section {
  font-family: 'Caveat', sans-serif;
  background: #e7fbe9;
  padding: 60px 20px;
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  color: var(--second-color);
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.donation-form {
  background-color: var(--hover-color);
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 85, 165, 0.2);
  padding: 30px;
  margin: 20px auto;
  max-width: 600px;
}
.donation-form h2 {
  font-family: 'Caveat', sans-serif;
  font-size: 2.8rem;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 20px;
}
.donation-form ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.donation-form li {
  background-color: #e7fbe9;
  border-left: 4px solid var(--hover1-color);
  margin-bottom: 10px;
  padding: 55px 15px;
  border-radius: 8px;
  font-size: 2.05em;
  font-style: italic;
}
.donation-form p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 20px;
}
.donation-form button {
  background: linear-gradient(to right, var(--main-color), var(--hover1-color));
  color: var(--bg-color);
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1em;
  display: block;
  margin: 0 auto;
  transition: background 0.3s;
}
.donation-form button:hover {
  background: linear-gradient(to right, var(--second-color), var(--main-color));
  color: var(--text-color);
}
.proof-inputs {
  display: none;
  margin-top: 20px;
}
.proof-inputs input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid var(--main-color);
  border-radius: 5px;
}
.proof-inputs button {
  background-color: var(--hover1-color);
  color: var(--text-color);
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
}
.proof-inputs button:hover {
  background-color: var(--main-color);
}
.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact form {
  right: 20px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease forwards;
}
.contact input, .contact textarea {
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid var(--bg-color);
  font-size: 1em;
}
.contact input:focus, .contact textarea:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 5px rgba(5, 97, 54, 0.4);
}
.contact button {
  background-color: var(--hover1-color);
  color: var(--bg-color);
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
}
.contact button:hover {
  background-color: var(--main-color);
}

.contact .contact-img {
  flex: 1 1 300px;
}
.contact .contact-img img {
  -webkit-mask-image: url(https://res.cloudinary.com/dam6cl8k0/image/upload/v1757047226/donate_jvyfdi.svg);
  mask-image: url(https://res.cloudinary.com/dam6cl8k0/image/upload/v1757047226/donate_jvyfdi.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 100%;
  border-radius: 15px;
  clip-path: ellipse(75% 100% at 50% 0%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}





 /* ================= Footer section ====== */
  /*Contact Yaca*/
  .Contact{
    display: flex;
    align-items: center; 
    gap: 40px;
    justify-content: center;
    margin: 10px auto;
  }
  
  footer .my-line {
    left: 5%;
    position: relative;
    align-items: center;
    justify-content: center;
    content: "";
    width: 90%;
    height: 5px;
    background: var(--second-color);
    border-radius: 2px;
  }
  .moja{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
  }
  .moja img{
    max-width: 280px;
    object-fit: cover;
  }
  .moja h2 {
    font-family: 700;
    font-family: 'Caveat', sans-serif;
    font-size: 2.3rem; 
    color: var(--btn-color); 
    text-align: center;
  }
  
  .mbili{
    padding: 30px;
  }
  .mbili h2{
    font-weight: 700;
    font-family: 'Caveat', sans-serif;
    color: var(--btn-color);
    text-align: center; 
    margin-bottom: 20px; 
    font-size: 2.3rem;
    position: relative;
  }
  .mbili h2::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 40%; 
    height: 3px;
    background-color: var(--second-color);
  }
  .lojo {
    margin: 20px 0; 
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
  }
  .lojo .list {
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    flex-direction: column;
    gap: 20px; 
  }
  .zoko {
    display: flex;
    align-items: center; 
    gap: 10px;
  }
  .zoko .icon {
    text-decoration: none;
    font-size: 1rem; 
    font-weight: bold; 
    color: var(--text-color); 
    display: flex;
    align-items: center; 
  }
  .icon i {
    color: var(--main-color); 
    font-size: 1.2rem; 
    margin-right: 8px; 
  }
  .lojo2 {
    text-align: center; 
    margin: 20px 0; 
  }
  .list2 {
    display: flex; 
    justify-content: center; 
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .social {
    display: inline-block;
    padding-right: 10px;
    gap: 40px;
  }
  .social a {
    text-decoration: none;
    color: var(--second-color);
    font-size: 1.8rem;
    transition: color 0.3s;
  }
  .social a:hover {
    color: var(--hover1-color);
  }
  .tatu{
    padding: 30px;
  }
  .tatu h2{
    font-family: 'Caveat', sans-serif;
    font-weight: 700;
    color: var(--btn-color);
    text-align: center; 
    margin-bottom: 20px; 
    font-size: 2.3rem;
    position: relative;
  }
  .tatu h2::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 30%; 
    height: 3px;
    background-color: var(--second-color);
  }
  .icon a{
    text-decoration: none;
    color: var(--text-color);
  }
  .icon a:hover{
    color: var(--hover-color);
  }
  .ft{
    font-family: 'Caveat', sans-serif;
    font-weight: 600;
    padding: 10px 0 10px 0;
    align-items: center;
    text-align: center;
    background: var(--main-color);
    color: var(--text-color);
    gap: 20px;
  }
  .dvlp{
    font-family: 'Caveat', sans-serif;
    font-size: var(--p-font);
  }
  .dvlp a{
    color: var(--btn-color);
  }
  .cpry{
    font-family: 'Caveat', sans-serif;
    font-size: var(--p-font);
  }
  .cpry i{
    color: var(--btn-color);
    font-size: 15px;
  }
  #abt {
    overflow-x: hidden;
  }
  
  /* ============ Garlley of photos ==========  */
.tatu {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 2% 10px;
}
.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--hover1-color);
  mask-image: linear-gradient(
      to right, transparent, 
      #000 10% 90%, 
      transparent);
  -webkit-mask-image: linear-gradient(
      to right, transparent,
      #000 10% 90%,
      transparent);    
}

.slider .list {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: scroll 60s linear infinite;
}

.slider .item {
  flex: 0 0 var(--width);
  height: var(--height);
  transition: filter 0.5s;
}

.slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--width) * var(--quantity)));
  }
}
.slider:hover .list {
  animation-play-state: paused !important;
  filter: grayscale(1);
}
.slider .item:hover img {
  filter: grayscale(0);
}


 /* =============== Responsiveness queries ================ */
/* Responsive Design */
@media (max-width: 1270px) {
    .text-side .logo-1 {
      bottom: 14%;
      right: 20%;
    }
    .text-side .logo-1 img {
      width: 130px;
    }
  }

@media (max-width: 860px) {
  .btn-start {
    display: none;
  }

}
@media (max-width: 790px) {
    .row-item {
                  display: flex;
                  flex-direction: column;
                  justify-content: center;
                  align-items: center;
                  gap: 10px;
              }
              .slogan {
                  display: none; /* Hide slogan on small screens */
              }
              .col-item {
                  width: 100%;
                  justify-content: space-between;
              }
              .item1 {
                  margin-bottom: 50px;
              }
              .item1 .donate {
                  padding: 10px 70px 10px 70px ;
              }
              .col-item2 {
                  position: absolute;
                  right: 10px;
                  top: 48.4%;
                  left: 0;
              }
              .col-item2 .social-icons {
                  gap: 20px;
                  margin: 30px;
              }
              .social-icons li a {
                  padding: 0;
                  background-color: transparent;
                  color: var(--main-color);
                  font-size: 18px;
                  transition: color 0.3s;
              }
              .menu-toggle {
                  display: block;
                  position: absolute;
                  right: 12px;
                  top: 16.3%;
              }
              .menu-header ul {
                  display: none;
                  flex-direction: column;
                  align-items: center;
                  gap: 10px;
                  width: 100%;
              }
              .menu-header ul.active {
                  display: flex;
              }

 /* Contact section */
    .Contact {
      flex-direction: column;
      gap: 20px;
    }
  
    .moja img {
      max-width: 100%;
    }
  
    .moja h2 {
      font-size: 1.2rem;
    }
  
    .mbili h2 {
      font-size: 1.3rem;
    }
  
    .lojo .list {
      gap: 15px;
    }
  
    /* Footer adjustments */
    .ft {
      text-align: center;
    }
          }
          
@media (max-width: 591px) {
  .col-item2 {
    position: absolute;
    right: 10px;
    top: 68%;
    left: 0;
    }
    .hero-text h1 {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1;
    }
    
    .hero-text p {
      font-size: 1.1rem;
    }
    .donation-form {
      max-width: 590px;
    }
    .donation-form li { 
      font-size: 1.5rem;
    }
  }

@media (max-width: 480px) {
  .hero { margin-top: 9.5rem;}
  .feature-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
  }
  .feature-box p {
    font-size: 1rem;
  }
  .features {
    padding: 1px;
    gap: 2px;
  }
  .feature-box {
    padding: 10px;
    width: fit-content;
  }
  .donation-form {
    max-width: 480px;
  }
}
         