/* :root {
    --primary-green: #0f9d58;
    --dark-green: #0b6e3f;
    --bg-light: #f4fdf8;
} */

:root{
  --green:#A7B949;
  --green-dark:#0b6e3f;
  --yellow:#F5B700;
  --gray-violet:#F8D5FF;
  --violet:#6A3FA0;
  --light:#F9FAF8;
  --dark:#1F2933;
  --light-gray:#E2DBE6;
  --light-lime: #a7b94954;
  --soft-violet: #EBCAFE;
  --pastel-lilac: #F2DFF5;

  /* RGB */
  --green-rgb:27, 142, 75;
  --green-dark-rgb:11, 110, 63;
  --yellow-rgb:245, 183, 0;
  --violet-rgb:106, 63, 160;
  --light-rgb:249, 250, 248;
  --dark-rgb:31, 41, 51;
  --soft-green: rgb(15 157 88 / 18%);
}

/* ===== Scrollbar Width ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* ===== Scrollbar Track (background) ===== */
::-webkit-scrollbar-track {
    background: var(--soft-green);
    border-radius: 10px;
}

/* ===== Scrollbar Thumb ===== */
::-webkit-scrollbar-thumb {
    background: var(--soft-green);
    border-radius: 10px;
}

/* ===== Hover Effect ===== */
::-webkit-scrollbar-thumb:hover {
    background: var(--violet);
}

/* ===== Firefox Support ===== */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--soft-violet) var(--green);
}


._text_violet {
    color: var(--violet);
}
._text_green {
    color: var(--green);
}

._text_light {
    color: var(--light);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--dark);
   
}

p{
   /* text-align: justify; */
  word-break: break-word;  /* লম্বা শব্দ ভাঙবে */
  hyphens: auto;   
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #ffffff;
    color: #1F2933;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
/* .navbar {
    background: var(--green);
} */
.hero {
    background: linear-gradient(var(--light-lime), var(--soft-green)),
    url('https://images.unsplash.com/photo-1607746882042-944635dfe10e') center / cover fixed no-repeat;
    color: white;
    padding: 90px 0;
    position: relative;
    border-radius: 0rem 1rem 1rem 1rem;
    margin-top: 6rem;

}




.btn-donate {
    background: #ffb700; /* Highlighted gold color */
    color: #0b6e3f;
    font-weight: 700;
    border-radius: 4px;
    padding: 7px 30px;
    transition: 0.3s;
}
.btn-donate:hover {
    background: #ffaa00;
    color: #fff;
}

.section-title {
    font-weight: 700;
    color: var(--dark-green);
}
.card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.card-custom:hover {
    transform: translateY(-8px);
}
.story-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.accordion-button:not(.collapsed) {
    background-color: #0f9d58;
    color: #fff;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-item {
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

#donation-hero {
    background: #f4fdf8;
}
.story-card img {
    width: 100%;
    height: 388px;
    object-fit: cover;
}

.emergency-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=1400&q=80')
              center / cover no-repeat;
}

.emergency-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(15 157 88 / 32%), rgb(11 110 63 / 53%));
}

.emergency-section .btn-donate {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


.donation-image {
    min-height: 420px;
    background: linear-gradient(
        rgb(15 157 88 / 40%),
        rgb(15 157 88 / 20%)
      ),
      url('https://images.unsplash.com/photo-1526256262350-7da7584cf5eb')
      center / cover no-repeat;
}

.amount-btn.active,
.amount-btn:hover {
    background: #0f9d58;
    color: #fff;
}


footer {
    background: var(--dark-green);
    color: #d8e9de;
}
footer a {
    color: #cfe9dc;
    text-decoration: none;
}
footer a:hover {
    color: #ffffff;
}

#pageLoader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #e5e5e5;
  border-top-color: #0f9d58;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

footer,
footer *, footer li, footer li a {
  color: black !important;
}

footer a{
  color: black !important;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.card-custom,
.bg-white.shadow {
  transition: all 0.35s ease;
}

.card-custom:hover,
.bg-white.shadow:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


.hero h1 {
  animation: fadeDown 1.2s ease forwards;
}

.hero p {
  animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.navbar-expand-lg.fixed-top{
  top: -8px;
}

/* Application.html  */
.section-title { color:var(--violet); font-weight:700; }
.card-custom { border:none; border-radius:12px; box-shadow:0 6px 20px rgba(0,0,0,0.08); transition:0.3s; }
.card-custom:hover { transform:translateY(-8px); }
.btn-appeal { background:#0f9d58; color:#fff; border-radius:30px; padding:12px 30px; font-weight:600; transition:0.3s; }
.btn-appeal:hover { background:#0b6e3f; color:#fff; }
.bg-header { background:#0f9d58; color:#fff; padding:80px 0; text-align:center; }
label { font-weight:600; }
input, select, textarea { border-radius:8px; }
.form-section { background:#fff; padding:40px; border-radius:12px; box-shadow:0 6px 20px rgba(0,0,0,0.08); }

.footer_divider{
  margin: 0px;
}


