/* TOPBAR-SEC */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-primary);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #d3e4fe;
  z-index: 1000;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-left a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon h4 {
  font-size: 14px;
  margin: 0;
  color: var(--color-primary);
  font-weight: 500;
}

.social-icon a {
  color: var(--color-primary);
  font-size: 14px;
  transition: 0.3s ease;
}

/* HEADER-SEC */
.header-sec {
  position: sticky;
  top: 0px;
  width: 100%;
  background-color: var(--color-bg);
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-sec .container {
  padding: 1rem 2rem;
}

.hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 90px;
  height: 70px;
  object-fit: contain;
}

.main-menu .menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-menu .menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.main-menu .menu a:hover {
  color: var(--color-accent);
}

.donate-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #2e3a8c 0%, #3aa655 100%);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(25, 77, 116, 0.35);
}

.donate-btn:hover {
   background: linear-gradient(135deg, #232f73 0%, #2f8a47 100%);

  box-shadow: 0 10px 25px rgba(39, 129, 195, 0.35);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu span {
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 4px;
}
/* HERO-SECTION */
.hero-section {
  width: 100%;
  height: calc(100vh - 120px);
  position: relative;
  overflow: hidden;
}
.hero-slider {
  width: 100%;
  height: 100%;
}
.hero-slide,
.swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ABOUT-SEC */
.about-section {
  padding: 80px 0px;
  background-color: #eff4ff;
}
.section-span {
  color: #006e2d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.about-section h2 {
  font-size: 36px;
  color: var(--color-heading);
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 15px;
  align-items: start;
}
.image-grid .img-1 {
  grid-column: 1;
  grid-row: 1;
  border-radius: 8px;
  overflow: hidden;
}

.image-grid .img-1 img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.image-grid .img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 25px;
}

.image-grid .img-2 {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: 8px;
  overflow: hidden;
  height: 380px;
}

.image-grid .info-card {
  background-color: var(--color-primary);
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  position: relative;
  grid-column: 1;
  grid-row: 2;
}

.image-grid .info-card::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px 130px 0 130px;
  border-style: solid;
  border-color: var(--color-primary) transparent transparent transparent;
}

.image-grid .info-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}

.image-grid .info-card a .play-button {
  flex-shrink: 0;
  font-size: 14px;
  text-decoration: none;
}

.image-grid .info-card a .play-button i {
  text-decoration: none;
}

.image-grid .info-card a .story-text {
  text-decoration: underline;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.play-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.play-button i {
  color: #fff;
}

.image-grid .info-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}
/* [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.85);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
} */
/* IMPACT-SECTION */
.impact-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.impact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.impact-head h2 {
  color: var(--color-heading);
  font-size: 36px;
  font-weight: 600;
}

.impact-des p {
  color: var(--color-text);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
}

.impact-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-top: 64px;
  padding: 0;
  flex-wrap: wrap;
}

.impact-box {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.impact-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background-color: #ddd;
}

.impact-box:hover {
  transform: translateY(-8px);
}

.impact-box h3 {
  color: var(--color-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.impact-box p {
  font-size: 18px;
  color: var(--color-text);
  font-weight: 500;
}
.info-stats {
  display: flex;
  gap: 30px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-item img {
  width: 26px;
  height: 26px;
}

.stat-content h3 {
  font-size: 16px;
  color: #2e3a8c;
  margin: 0;
  font-weight: 500;
}

.stat-content p {
  color: #454651;
  font-size: 14px;
}
/* SERVICES-SEC */
.services-section {
  background: #fff;
  padding: 80px 0;
}

.services-section span {
  color: var(--color-span);
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.services-section h2 {
  font-size: 2.5rem;
  color: var(--color-heading);
  font-weight: 600;
  margin-bottom: 50px;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-item {
  margin-bottom: 40px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #d3e4fe;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
}
.service-icon {
  width: 56px;
  height: 56px;
  background-color: #8efa9e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-icon img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}

.service-item h3 {
  margin-top: 10px;
  font-size: 20px;
  color: #142175;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 42px;
  color: var(--color-heading);
  margin-bottom: 10px;
}
.section-title p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}
/* SERVICES-SECTION */
.testimonial-sec {
  padding: 80px 0;
  background: var(--color-bg, #f7f7f7);
  text-align: center;
}

.testimonial-sec .section-span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-span);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-sec h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--color-heading, #333);
}
.testimonial-slider {
  padding-bottom: 50px !important;
}

.swiper-slide {
  display: flex;
}
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  width: 100%;
  max-width: 350px;
  min-height: 350px;
  height: 100%;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  /* margin-bottom: 5px; */
  text-align: center;
}

.testimonial-card .designation {
  color: #666;
  font-size: 14px;
  text-align: center;
}

.testimonial-card .quote {
  color: var(--color-text, #555);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-top: 10px;
}

.testimonial-card .quote::before,
.testimonial-card .quote::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../asset/quote-mark.png") no-repeat center center;
  background-size: contain;
  opacity: 0.5;
}

.testimonial-card .quote::before {
  top: 0;
  left: -10px;
}

.testimonial-card .quote::after {
  bottom: -10px;
  right: 0;
  transform: rotate(180deg);
}

.nav-buttons {
  display: flex;
  justify-content: end;
  gap: 12px;
  margin-bottom: 20px;
}

.nav-buttons button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-buttons button:hover {
  background: var(--color-primary);
  color: #fff;
}

.swiper-pagination-bullet {
  background: #ff7a00;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* FOOTER-SECTION */
.footer-sec {
  background: linear-gradient(135deg, #1b3353 0%, #204d6d 100%);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about {
  flex: 1 1 300px;
  max-width: 350px;
}

.footer-about h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.9;
}

.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  color: var(--color-primary);
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-contact p,
.footer-contact a {
  color: #fff;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom a {
  font-weight: 600;
  color: #fff;
}
/* BREADCRUMBS */
.breadcrumb {
  background-color: #eff4ff;
  list-style: none;
  display: flex;
  border-bottom: 1px solid rgba(198, 197, 211, 0.3);
  font-size: 16px;
  padding: 30px;
  margin: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 8px;
  color: #8f8e9d;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #1e2f8f;
  font-weight: bold;
}

.breadcrumb-item.active {
  color: #8f8e9d;
  font-weight: normal;
}

/* ABOUT-PAGE */
.abtsec {
  padding: 80px 0;
  background-color: #ffffff;
  color: var(--color-text);
}

.abt-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.abt-tag .badge {
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 16px;
  display: inline-block;
  font-weight: 500;
}
.abt-tag .badge.bg-primary {
  color: #006e2d;
  background-color: #e0ecea;
}
.abt-tag .badge.bg-secondary {
  color: #fff;
  background-color: #142175;
  font-weight: 600;
}
.abtsec .intro-content h2 {
  font-size: 2.125rem;
  font-weight: 600;
  color: var(--color-heading);
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  position: relative;
}

.abtsec .intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}
.abtsec .intro-content strong {
  color: #142175;
  text-transform: uppercase;
}
.mission-vision-sec {
  background-color: #eff4ff;
  padding: 40px 0px;
}
.wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vision-icon img,
.mission-icon img {
  width: 18px;
  height: 18px;
}
.vision-icon,
.mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #2e3a8c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.vision-icon {
  background-color: #006e2d;
}
.mission-vision-sec .mission,
.mission-vision-sec .vision {
  flex: 1 1 320px;
  height: 320px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mission-vision-sec .mission:hover,
.mission-vision-sec .vision:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mission-vision-sec .mission h3,
.mission-vision-sec .vision h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.mission-vision-sec .mission p,
.mission-vision-sec .vision p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}
.abt-img img {
  width: 600px;
  height: 700px;
  border-radius: 12px;
}

/* PROJECT-SECTION */

.projects-section {
  padding: 80px 0;
}
.project-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 10px 20px 20px 20px;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--color-heading);
}

.project-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--color-text);
}
.fund-info {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-text);
}
.fund-info span {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}
.progress-bar {
  background-color: #eee;
  border-radius: 6px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress {
  background: linear-gradient(135deg, #006e2d 0%, #8efa9e 100%);
  height: 100%;
  width: 0;
  transition: width 1.2s ease-in-out;
}
.project-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 12px;
}
.project-actions {
  display: flex;
  gap: 30px;
}
.project-actions a {
  display: inline-block;
  padding: 10px 25px;
  color: #fff;
  width: 100%;
  max-width: 200px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s;
}
.share-btn {
  border: 1px solid #3b5998;
  color: #3b5998 !important;
}

/* MEDIA-SEC */
.blog-sec {
  padding: 80px 0;
}
.blog-item {
  padding: 10px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin-bottom: 30px;
}

.blog-img img {
  border-radius: 15px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.blog-meta {
  padding-top: 15px;
  font-size: 14px;
  color: #777;
}

.blog-meta i {
  color: #c62828;
  margin-right: 5px;
}

.blog-text {
  padding: 15px 0px 15px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  flex-grow: 1;
}

.read-more-btn {
  color: var(--color-primary);
  font-weight: 500;
  transition:
    color 0.3s ease,
    text-decoration 0.3s ease;
}

.read-more-btn:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.read-more-btn i {
  margin-left: 8px;
}
/* GALLERY-SEC */
.gallery-sec {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  /* border-radius: 15px; */
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* CONTACT-SEC */

.contact-sec {
  padding: 80px 0;
  background: #ffff;
}

.section-header h2 {
  font-size: 36px;
  color:#142175;
  font-weight: 600;
  
}
.section-header{
  text-align: center;
  margin-bottom: 20px;
}
.section-header p{
  font-size: 18px;
  color: #454651;
  line-height: 28px;
  max-width: 640px;
  margin: auto;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.contact-icon{
      width: 48px;
    height: 48px;
    background-color: #8efa9e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  margin-bottom: 10px;
  color: var(--color-heading);
}
.contact-item p,
.contact-item a {
  color: #454651;
  font-size: 16px;
}


.contact-btn i {
  margin-right: 5px;
}

.contact-btn:hover {
  background: var(--color-accent);
}
.enquiry-form {
    max-width: 600px;
    margin: auto;
    padding: 40px;
    background: #ffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.enquiry-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2f3c94;
    font-weight: 600;
}
.form-row {
    display: flex;
    gap: 15px;
}
.sub-text{
  font-size: 16px;
  margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    width: 100%;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #2f3c94;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #EFF4FF;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(47, 60, 148, 0.15);
}

/* button */
.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #1c2b7a, #0a7a4b);
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
/* DONATE-SEC */

.donate-sec {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #fff;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.tab-buttons button {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  color: var(--color-primary);
  border-color: var(--color-primary) !important;
  border-bottom: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 220px;
  /* flex: 0 0 auto;  */
}

.tab-buttons button:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  background: rgba(25, 77, 119, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(25, 77, 119, 0.15);
}

.tab-buttons button i {
  transition: transform 0.3s ease;
}

.tab-buttons button:hover i {
  transform: scale(1.15);
}
.top-doners {
  margin-top: 40px;
}
.donor-box {
  background: rgba(25, 77, 119, 0.12);
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 5px solid var(--color-primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.medal-img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.donor-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 10px;
}

.donor-details h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.donor-details p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
.campaign-sec,
.donor-amount {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 16px;
}
.inner-title {
  font-size: 20px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.general-sec {
  padding: 20px 0px;
}

.donate-form form {
     max-width: 600px;
    margin: auto;
    padding: 40px;
    background: #ffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(25, 77, 116, 0.08);
}
.form-title {
  font-size: 26px;
  color: var(--color-primary);

}
.amount-group {
  position: relative;
}

.amount-group .currency {
  position: absolute;
  left: 12px;
  top: 38px;
  font-size: 14px;
  color: #666;
}

.amount-group input {
  padding-left: 28px; /* space for ₹ */
}
/* .donate-form form .col-md-6,
.col-md-4 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}
.inner-title {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 25px;
}

.donate-form form label {
  display: block;
  font-size: 14px;
  font-weight: 500px;
  color: #000;
  margin-bottom: 8px;
}

.donate-form form input,
.donate-form form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  color: var(--color-text);
  margin-bottom: 18px;
}

form input::placeholder {
  color: var(--color-text);
}

form input:hover,
form select:hover {
  border-color: #bbb;
}

form input:focus,
form select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(25, 77, 116, 0.08);
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
} */

.donate-form .form-button {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  background: linear-gradient(90deg, #1c1e37 0%, #194d74 60%, #1f5b87 100%);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(25, 77, 116, 0.35);
}

.form-button:hover {
  box-shadow: 0 6px 14px rgba(249, 23, 23, 0.45);
  transform: translateY(-2px);
}

.form-button:hover {
  opacity: 0.9;
}
.donate-form .required {
  color: var(--color-accent, #f91717); /* red asterisk */
  margin-left: 2px;
}

.share-icon {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  justify-content: center;
}

.share-icon button {
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #4b5563;
  transition: all 0.3s ease;
}

.share-card button:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

.share-card i {
  color: #333;
}

/* LOGIN-PAGE */
body.login-page,
.signup-page {
  padding-top: 0 !important;
}
.login-sec {
  width: 100%;
  height: 100vh;
  background: url("../asset/images/about-image1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-form,
.signup-form {
  background: #fff;
  width: 100%;
  max-width: 500px;
  padding: 60px;
  border-radius: 20px;
  margin-left: auto;
  box-shadow: 0px -1px 8px 0px #e6e9f9e6;
}

.login-form .logo,
.signup-form .logo {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.login-form h3,
.signup-form h3 {
  font-size: 28px;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 10px;
}

.login-form p,
.signup-form p {
  position: relative;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 30px;
  font-size: 15px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  color: #2f3941;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: #49545c;
  margin-bottom: 10px;
  outline: none;
  transition: 0.3s;
  font-size: 14px;
}

.input-group input:focus {
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 6px rgba(255, 116, 0, 0.3);
}

.login-form button,
.signup-form button {
  width: 100%;
  background: linear-gradient(90deg, #ff7400 28.12%, #f91717);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(249, 23, 23, 0.3);
  transition: 0.3s;
}

.login-form button,
.signup-form button:hover {
  background: linear-gradient(90deg, #e65f00 28.12%, #d11414);
  transform: translateY(-2px);
}

.forgot-link {
  text-align: right;
  margin-bottom: 15px;
}

.forgot-link a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}

.forgot-link a:hover {
  text-decoration: underline;
}

.login-footer,
.signup-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
}

.login-footer a,
.signup-footer a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.login-footer a:hover {
  text-decoration: underline;
}
.signup-section {
  width: 100%;
  /* height: 100vh; */
  background: url("../asset/images/about-image1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
/* FUNDRAISING-SEC */
.fundraiser-sec {
  padding: 80px 0px;
}
.fund-header {
  text-align: center;
}
.fund-header span img {
  width: 18px;
  height: 18px;
}
.fund-header h6 {
  background: rgba(25, 77, 119, 0.12);
  padding: 10px 12px;
  border-radius: 20px;
  width: fit-content;
  font-size: 15px;
  margin: auto;
  color: var(--color-primary);
}
.fund-header h2 {
  text-transform: capitalize;
  margin: 20px 0 23px;
  font-size: 32px;
  font-weight: 600;
}

.btn-contribute {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #1c1e37 0%, #194d74 60%, #1f5b87 100%);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 14px 22px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(25, 77, 116, 0.35);
  transition: all 0.3s ease;
}

.cntr-btn:hover {
  background: linear-gradient(90deg, #24306a 0%, #1f6fa8 60%, #2781c3 100%);
  box-shadow: 0 10px 25px rgba(39, 129, 195, 0.35);
  filter: brightness(1.05);
}

.cntr-btn:active {
  transform: scale(0.98);
  background: linear-gradient(90deg, #24306a 0%, #1f6fa8 60%, #2781c3 100%);
}

.coin-gif {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.amount {
  font-size: 28px;
  font-weight: 700;
  margin-top: 20px;
}

.goal {
  font-size: 14px;
  color: #666;
}

/* Progress */
.progress-bar {
  width: 100%;
  height: 8px;
  background: #e6f5f4;
  border-radius: 20px;
  margin: 12px 0;
  overflow: hidden;
}

.progress-fill {
  width: 60%;
  height: 100%;
  background: #00bfb3;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.stats strong {
  font-size: 18px;
}
.fundraise-text {
  box-shadow: 0 6px 20px #0000001a;
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}
.fundraise-text p {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 10px;
  text-align: left;
}
.fundraise-text h3 {
  font-size: 26px;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
}
.donate-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.doner-img img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.doners-card {
  margin-top: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(25, 77, 116, 0.08);
}
.donner-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.donner-tab .dnr-btn {
  padding: 10px 12px;

  width: 100%;
  border: none;
  background: var(--color-primary);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(25, 77, 116, 0.08);
}
.fb-btn {
  padding: 10px 20px;
  border: none;
  background: #3b5998;
  border-radius: 999px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}
.fb-btn i {
  font-size: 16px;
  margin-right: 6px;
}
.fundraise-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.fundraise-img img {
  height: 250px;
}
.share-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sm-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.sm-btn.wp {
  background: #25d366;
}
.sm-btn.lk {
  background: #0a66c2;
}
.sm-btn.ln {
  background: #0a66c2;
}
.sm-btn .fa-link {
  color: #fff;
}

.fb-btn:hover,
.sm-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.full-text {
  display: none;
}

.blog-text {
  line-height: 1.7;
}
.donation-bank-box {
  padding: 60px 0px;
}
.dn-box {
  /* position: absolute;
  top: 30px;
  right: 30px; */
  max-width: 280px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(25, 77, 116, 0.08);
  z-index: 10;
  margin-left: auto;
}

.dn-box h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
  font-weight: 600;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}

.bank-row span {
  color: var(--color-text);
  opacity: 0.8;
}

.bank-row strong {
  color: var(--color-heading);
  font-weight: 600;
}
