@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@300;400;500;600;700&display=swap');
:root {
  /* Brand Colors */
  --green-primary: #2f7d32;
  --green-light: #e8f5e9;
  --green-soft: #f4fbf5;

  /* Neutral */
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
  --white: #ffffff;

  /* UI */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);

  --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
* {
  box-sizing: border-box;
}
.Ft-Guj{
  font-family: "Hind Vadodara", sans-serif;
}
.seva-label{
  font-family: "Hind Vadodara", sans-serif;
  font-weight: 500;
}
.donate-landing {
  margin: 40px 0;
}

.landing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.landing-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.landing-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.cause-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.cause-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cause-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.cause-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cause-card-content {
  padding: 18px;
}

.cause-card-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cause-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cause-cta {
  font-weight: 600;
  color: var(--green-primary);
  font-size: 14px;
}
.amount-preview {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 10px;
  margin-top: 6px;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
}

.amount-highlight {
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--green-primary);
  background: var(--green-light);
  border-radius: var(--radius-sm);
}

.amount-highlight small {
  font-weight: 400;
  color: var(--text-muted);
}

.amount-highlight.muted {
  background: #f5f5f5;
  color: var(--text-muted);
}
.impact-text {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}



body.donate-layout {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text-dark);
  background-color: #fafafa;
  line-height: 1.6;
}

a {
  color: var(--green-primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}
/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */
.donate-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.donate-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.donate-header .logo img {
  height: 42px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  background: linear-gradient(130deg, #74BA70 0%, #3994CD 100%);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: none;
}

.btn-primary:hover {
  opacity: 0.95;
}
/* .donation-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  margin: 40px 0;
} */
.cause-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  /* position: sticky;
  top: 90px; */
}

.cause-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.cause-panel-content {
  padding: 24px;
}

.cause-panel h1 {
  font-size: 24px;
  margin: 0 0 10px;
}

.cause-panel p {
  color: var(--text-muted);
  font-size: 15px;
}
.option-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-card:hover {
  border-color: var(--green-primary);
}

.option-card.active {
  background: var(--green-light);
  border-color: var(--green-primary);
}

.option-card .title {
  font-weight: 600;
}

.option-card .amount {
  color: var(--green-primary);
  font-weight: 600;
  margin-top: 6px;
}
/* .donation-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
} */

.donation-form h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.amount-input {
  font-size: 22px;
  font-weight: 600;
  padding: 10px 14px;
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.amount-input:focus {
  outline: none;
  border-color: var(--green-primary);
}
.amount-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.amount-buttons button {
  background: var(--green-soft);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
/* .form-group {
  margin-bottom: 14px;
} */

.form-group label {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.submit-donate {
  width: 100%;
  /* background: var(--green-primary); */
  background: linear-gradient(130deg, #74BA70 0%, #3994CD 100%);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
}
.toggle-donate {

  background: linear-gradient(130deg, #74BA70 0%, #3994CD 100%);
  color: var(--white);
  padding: 10px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
}
.donate-footer {
  /* background: var(--white); */
  /* border-top: 1px solid var(--border-light); */
  /* padding: 10px 0; */
  padding-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* .donate-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
} */
.trust-note {
  margin-top: 16px;
  padding: 12px;
  background: var(--green-soft);
  border-left: 4px solid var(--green-primary);
  font-size: 14px;
  color: var(--text-muted);
}

.selected-cause {
  background: var(--green-soft);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 14px;
}

.help-text {
  font-size: 12px;
  color: var(--text-muted);
}

.secure-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.seva-pill {
position: relative;
padding: 8px 10px;
border-radius: 6px;
border: 1px solid #e5e7eb;
background: #fff;
text-align: center;
cursor: pointer;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
flex-wrap: wrap;
}

.seva-pill.active {
  background: linear-gradient(130deg, #74BA70 0%, #3994CD 100%);
  color: #fff;
  border-color: #7fb9a4;
}

.seva-pill .check {
  position: absolute;
  top: 8px;
  right: 10px;
  display: none;
  font-size: 12px;
}

.seva-pill.active .check {
  display: block;
}
.btnQty{
  color: #3c96c7;
    border-color: #3c96c7;
    background: #f0faff;
}
.btnQty:hover,
.btnQty:focus,
.btnQty:active{
  color: #fff !important;
      border-color: #3c96c7 !important;
  background: linear-gradient(130deg, #74BA70 0%, #3994CD 100%);
}
/* @media (max-width: 900px) {
  .donation-grid {
    grid-template-columns: 1fr;
  }

  .cause-panel {
    position: static;
  }
} */

    .DonationWrapper{
        background:#fff;
        padding: 15px;
        border-radius:10px;
    }
    .DonateTab{
padding: 4px;
    border: 1px solid #3c96c7;
    border-radius: 200px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: #b0e5fd30;
    }
    .DonateTab .nav-pills .nav-link{
        border-radius:200px !important;
        color:#000;
        font-size: 16px;
        font-weight: 500;
    }
    .DonateTab .nav-pills .nav-link:hover,
    .DonateTab .nav-pills .nav-link:focus{
      background: #89c0de66;
      color: #000;
    }
    .DonateTab .nav-pills .nav-link.active, 
    .DonateTab .nav-pills .show>.nav-link{
        background: linear-gradient(130deg, #74BA70 0%, #3994CD 100%);
        color: var(--white);
    }

    .DonationItem{
        padding: 15px;
        background:#fff;
        border-radius:10px;
    }
    .cause-image{
        border-radius:10px;
        overflow:hidden;
    }
    .cause-image img{
        width: 100%;
        height: 100%;
        object-fit:cover;
    }
    @media(max-width:479.98px){
        .DonateTab{
            width: 100%;
            border-radius:10px;
        }
        .DonateTab .nav-pills{
            flex-direction:column;
        }
        .DonateTab .nav-pills .nav-link{
            width: 100%;
            border-radius:8px !important
        }

    }

     .DonateItem {
        height: 100%;
        padding: 8px;
        background:#fff;
        display: flex;
        flex-direction:column;
        gap:18px;
        border-radius:12px;
    }
    .DonateThumb{
        aspect-ratio:8/7;
        overflow:hidden;
        border-radius:8px;
        background:#ccc;
    }
    .DonateThumb .swiper{
        height: 100%;
        width: 100%;
    }
    .DonateThumb img{
        width: 100%;
        height: 100%;
        object-fit:cover;
    }
    .DonateContent{
        padding-left:10px;
        padding-right:10px;
        padding-bottom:10px;
    }
    .DonateContent h4{
        font-size:20px;
        font-weight:600;
        margin-bottom:8px;
        color:#000;
        transition: all 0.3s ease-in-out;
    }
    .DonateContent p{
        font-size:15px;
        color:#a1a0a0;
        line-height:22px;
    }
    .DonateItem:hover .DonateContent h4,
    .DonateItem:focus .DonateContent h4,
    .DonateItem:active .DonateContent h4{
        color:#51B9A2;
    }