.banner-wrapper {
  height: 75vh;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 576px) {
  .banner-wrapper {
    height: 50vh;
  }

  .banner-img {
    object-position: center center;
    /* top থেকে center যেন crop হয় */
  }
}





.nav-link {
  color: #000000;
}

.nav-link:hover {
  color: #FDBB1C;
}

.navdonate-btn {
  display: inline-flex;
  padding: 10px 18px;
  flex-direction: column;
  align-items: flex-start;
  color: #FDBB1C;
  border-radius: 0px 0px 30px 0px;
  border: 1px solid var(--Primary-color, #FDBB1C);
}

.toggle-button {
  background-color: #ffffff;
  position: relative;
  z-index: 10;
}

.navdonate-btn:hover {
  background-color: #FDBB1C;
  color: #ffffff;
}

nav img {
  width: 70px;
  position: relative;
  z-index: 10;
}

nav li {
  position: relative;
  z-index: 10;
}

nav button {
  position: relative;
  z-index: 10;
}

.donate-btn {
  display: inline-flex;
  padding: 16px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
  background-color: #FDBB1C;
  border-radius: 0px 0px 30px 0px;
  border: 1px solid var(--Primary-color, #FDBB1C);
  text-decoration: none;
}

.donate-btn:hover {
  background-color: #ffffff;
  color: #FDBB1C;
  box-shadow: 10px 10px #FDBB1C;
}

.details-btn {
  display: inline-flex;
  padding: 10px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
  background-color: #FDBB1C;
  border-radius: 30px 0px 30px 0px;
  border: 1px solid var(--Primary-color, #FDBB1C);
  text-decoration: none;
}

.details-btn:hover {
  background-color: #ffffff;
  color: #FDBB1C;
  box-shadow: 10px 10px #FDBB1C;
}

h1 {
  max-width: 40ch;
  text-align: center;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

@keyframes scale {
  100% {
    transform: scale(1);
  }
}

span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}

span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.categories {
  /* background: var(--Color-Primary-50, #c8c2e1); */
  position: relative;
  z-index: 10;
}

.categories .circle {
  width: 200px;
  height: 200px;
  position: absolute;
  left: -61px;
  top: -100px;
  border-radius: 300px;
  border: 40px solid var(--Primary-100, #d3caf8);
}

.img1-relative {
  position: relative;
  width: 50%;
  height: 400px;
}

.img1 {
  width: 300px;
}

.img2-absolute {
  position: absolute;
  top: -50px;
  left: -61px;
  width: 200px;
}

.img3-absolute {
  position: absolute;
  bottom: -70px;
  right: -90px;
  width: 200px;
}

.bottom-video {
  width: 100%;
  height: 250px;
  position: relative;
}

.bottom-video iframe {
  position: absolute;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .img1-relative {
    position: relative;
    width: 50%;
    height: 300px;
  }

  .img1 {
    width: 200px;
  }

  .img2-absolute {
    position: absolute;
    top: -50px;
    left: -61px;
    width: 150px;
  }

  .img3-absolute {
    position: absolute;
    bottom: -58px;
    right: -75px;
    width: 150px;
  }
}


/* CSS for 2-line clamp */

.text-truncate-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* donation list css */
body {
  padding-top: 80px;
}

.summary-title {
  background-color: #e6f4ea;
  padding: 20px;
  border-left: 6px solid #198754;
  border-radius: 8px;
  margin-bottom: 30px;
}

.table thead {
  background-color: #d1e7dd;
}

.table th,
.table td {
  white-space: nowrap;
}

@media (max-width: 576px) {

  .table th,
  .table td {
    font-size: 14px;
    padding: 8px 10px;
  }
}


/* end */

/* footer css */

footer {
  background-color: #fff;
  color: #222;
  font-family: 'Poppins', sans-serif;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a {
  color: #222;
  text-decoration: none;
}

footer a:hover {
  color: #FDBB1C;
  /* হলুদ হোভার কালার */
}

.footer-icon {
  width: 18px;
  margin-right: 8px;
  color: #FDBB1C;
  /* এখানে আইকন কালার আপডেট */
}

.footer-contact p,
.footer-payment p {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-contact p i,
.footer-payment p i {
  margin-right: 10px;
  font-size: 18px;
  color: #FDBB1C;
  /* আইকন কালার এখানে */
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 576px) {
  footer .row>div {
    margin-bottom: 1.5rem;
  }
}

/* end */

/* sign in css */
body {
  background-color: #f4f6f8;
}

.login-card {
  max-width: 500px;
  margin: auto;
  margin-top: 100px;
  padding: 30px;
  border: 2px solid #FDBB1C;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 128, 0, 0.1);
  background-color: white;
}

.form-control:focus {
  border-color: #FDBB1C;
  box-shadow: none;
}

.btn-success {
  width: 100%;
}

/* end */


/* statement css */
.summary-box {
  background-color: #f8f9fa;
  border-left: 5px solid #198754;
  padding: 20px;
  border-radius: 8px;
}

.table thead {
  background-color: #d1e7dd;
}

.table td,
.table th {
  vertical-align: middle;
}

/* end */
/* contact */
/* Safe, conflict-free Contact Section CSS */
.contact-sec-wrapper {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-sec-container {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(86, 86, 151, 0.1);
  padding: 30px;
}

.contact-sec-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 800;
  font-size: 2.2rem;
  background: linear-gradient(45deg, #565697, #FDBB1C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-info-item {
  flex: 1 1 280px;
  background: linear-gradient(to bottom, #fff, #f9f9f9);
  border-left: 6px solid #FDBB1C;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 17px;
  color: #333;
  box-shadow: 0 4px 10px rgba(86, 86, 151, 0.1);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 6px;
  color: #565697;
  font-weight: 700;
}

.contact-info-item a {
  color: #565697;
  text-decoration: none;
  word-break: break-word;
}

.contact-info-item a:hover {
  color: #FDBB1C;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .contact-sec-container {
    padding: 20px;
  }

  .contact-sec-container h2 {
    font-size: 1.8rem;
  }

  .contact-info-item {
    font-size: 16px;
    padding: 16px;
  }
}

/* end */

/* nav extra color code */
.navbar-nav .nav-item .btn {
  margin-right: 12px;
  /* বাটনের মাঝে ১২px স্পেস */
}

/* রেজিস্ট্রেশন বাটন */
.btn-custom-outline {
  border: 2px solid #565697;
  color: #565697;
  background-color: white;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 8px;
  padding: 6px 16px;
}

.btn-custom-outline:hover {
  background-color: #565697;
  color: white;
}

/* সাইন ইন বাটন */
.btn-custom-filled {
  background-color: #FDBB1C;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-custom-filled:hover {
  background-color: #d9a610;
  color: white;
}

/* Donate Now বাটনের জন্য আলাদা স্টাইল */
.btn-donate-blue {
  background-color: #565697;
  color: white;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  transition: 0.3s;
  border: none;
}

.btn-donate-blue:hover {
  background-color: #3f3f86;
  color: #fff;
}


/* donate now page */
.donation-wrapper-section {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #565697 0%, #FDBB1C 100%);
      padding: 80px 0;
    }

    .donation-wrapper-box {
      max-width: 600px;
      margin: auto;
      background: #fff;
      border-radius: 15px;
      padding: 30px 40px;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .donation-wrapper-box h2 {
      color: #565697;
      font-weight: 700;
      margin-bottom: 25px;
      text-align: center;
    }

    .donation-wrapper-box label {
      font-weight: 600;
      color: #565697;
    }

    .donation-wrapper-box input,
    .donation-wrapper-box select {
      border: 2px solid #FDBB1C;
      border-radius: 8px;
      padding: 10px;
      width: 100%;
      margin-bottom: 20px;
      transition: 0.3s;
    }

    .donation-wrapper-box input:focus,
    .donation-wrapper-box select:focus {
      border-color: #565697;
      outline: none;
      box-shadow: 0 0 8px rgba(86, 86, 151, 0.4);
    }

    .donation-wrapper-box .donate-btn {
      background: linear-gradient(to right, #565697, #FDBB1C);
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 10px;
      padding: 12px;
      width: 100%;
      font-size: 1.2rem;
      transition: 0.3s ease;
    }

    .donation-wrapper-box .donate-btn:hover {
      background: #565697;
    }

    @media(max-width: 576px) {
      .donation-wrapper-box {
        padding: 25px;
      }
    }
    /* end */

    /* sign up */
    .donor-reg-section {
      background: linear-gradient(135deg, #FDBB1C, #565697);
      padding: 80px 0;
      font-family: 'Poppins', sans-serif;
    }

    .donor-reg-box {
      max-width: 600px;
      margin: auto;
      background-color: #fff;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .donor-reg-box h2 {
      text-align: center;
      font-weight: bold;
      margin-bottom: 30px;
      color: #565697;
    }

    .donor-reg-box label {
      font-weight: 600;
      color: #565697;
    }

    .donor-reg-box input,
    .donor-reg-box select {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border-radius: 8px;
      border: 2px solid #FDBB1C;
      transition: 0.3s;
    }

    .donor-reg-box input:focus,
    .donor-reg-box select:focus {
      border-color: #565697;
      outline: none;
      box-shadow: 0 0 6px rgba(86, 86, 151, 0.3);
    }

    .donor-reg-box .submit-btn {
      background: linear-gradient(to right, #565697, #FDBB1C);
      border: none;
      color: #fff;
      font-weight: bold;
      padding: 12px;
      font-size: 1.1rem;
      width: 100%;
      border-radius: 10px;
      transition: 0.3s;
    }

    .donor-reg-box .submit-btn:hover {
      background: #565697;
    }

    @media(max-width: 576px) {
      .donor-reg-box {
        padding: 25px;
      }
    }
    /* end */