
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&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=Cairo:wght@200..1000&display=swap');

@import url('./scroll.css');
@import url("./counter.css");
@import url("./the-cards.css");
@import url("./boss-and-swiper.css");
@import url("./navbar.css");
@import url("./tweet.css");
@import url("./project-shar-icons.css");
@import url("./donation.css");
@import url("./footer.css");


:root {
  /* Font */
  --font-family: "Cairo", sans-serif;
  --bg-linear-gradient-primary : linear-gradient(to right top, #7a8200, #636b0a, #4e550f, #3a4010, #282c0e);
  /* background-image:   */

}

/* ================= */
* {
  font-family: "Cairo", sans-serif;
}



a {
  text-decoration: none !important;
}

a:active{
  background: #00000000 !important;
}


.section {
  background-color: #f9f9f9;
}

.bg-primary{
  background: #05282a !important;
}


.navbar.navbar-expand-lg{
  background-color: #ffffffae !important;
}

/* Project card styling */
.project {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.project:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Header styling */
.card-header {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  padding: 15px;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
}

/* Social icons */
.social-icons a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00c6ff;
}

/* Card image */
.project img {
  border-radius: 8px;
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}

.project img:hover {
  opacity: 0.9;
}

/* Card body text */
.project .card-body p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Donation buttons */
.project .btn-outline-primary {
  border-color: #00c6ff;
  color: #007bff;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 50px;
  padding: 10px 20px;
}

.project .btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

/* Input group styling */
.input-group .form-control {
  border-radius: 50px 0 0 50px;
  border-color: #ddd;
}

.input-group .btn-success {
  border-radius: 0 50px 50px 0;
  background: #28a745;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.input-group .btn-success:hover {
  background: #218838;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .project img {
      max-height: 200px;
  }

  .project .btn-outline-primary, .input-group .btn-success {
      padding: 8px 15px;
  }
}

/* ======================================== */


.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 0px;
  right: 0px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===================================== */

/* ==================================== */
.progress-bar.bg-success{
  background: #05282a !important;
}
