/* TOPBAR-SEC */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-primary);
  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: #fff;
  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: #fff;
  font-weight: 500;
}

.social-icon a {
  color: #fff;
  font-size: 14px;
  transition: 0.3s ease;
}

/* HEADER-SEC */
.header-sec {
  position: sticky;
  top: 40px;
  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(90deg, #1c1e37 0%, #194d74 60%, #1f5b87 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(90deg, #24306a 0%, #1f6fa8 60%, #2781c3 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;
}

.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 .img1 {
  grid-column: 1;
  grid-row: 1;
  border-radius: 8px;
  overflow: hidden;
}

.image-grid .img1 img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.image-grid .img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 25px;
}

.image-grid .img2 {
  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;
  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;
}
/* 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: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  background: #f5f6fa;
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: filter 0.3s ease;
}

.service-item h3 {
  font-size: 20px;
  color: #1c0d0a;
  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 */
.breadcrumbs-hero {
  position: relative;
  background-image: url("../asset/images/inner-hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumbs-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.button-group {
  position: relative;
  display: flex;
  gap: 15px;
  z-index: 2;
  transform: translateY(30px);
}
.home-btn,
.current-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.home-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.current-btn {
  background: var(--color-accent);
  color: #fff;
}
/* ABOUT-PAGE */
.abtsec {
  padding: 80px 0;
  background-color: #ffffff;
  color: var(--color-text);
}

.abtsec .intro-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.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 h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.abtsec .intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.abtsec .mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.abtsec .mission,
.abtsec .vision {
  flex: 1 1 320px;
  background: var(--color-tertiary-bg);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.abtsec .mission:hover,
.abtsec .vision:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.abtsec .mission h3,
.abtsec .vision h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.abtsec .mission p,
.abtsec .vision p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* 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-color: var(--color-primary);
  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;
}
.donate-btn {
  background: linear-gradient(90deg, #1c1e37 0%, #194d74 60%, #1f5b87 100%);
  box-shadow: 0 8px 24px rgba(25, 77, 116, 0.35);
}

/* 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: #f9f9f9;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--color-heading);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.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 .mail {
  color: var(--color-primary);
  font-size: 16px;
}
.contact-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-btn i {
  margin-right: 5px;
}

.contact-btn:hover {
  background: var(--color-accent);
}

.enquiry-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-form h3 {
  margin-bottom: 20px;
  color: var(--color-heading);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-group input,
textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  color: var(--color-text);
}

.submit-btn {
  padding: 10px 30px;
  background: linear-gradient(90deg, #1c1e37 0%, #194d74 60%, #1f5b87 100%);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #24306a 0%, #1f6fa8 60%, #2781c3 100%);
  box-shadow: 0 10px 25px rgba(39, 129, 195, 0.35);
  transform: translateY(-2px);
}
/* 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: 80px 0px;
}

.donate-form form {
  max-width: 500px;
  margin: auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(25, 77, 116, 0.08);
}
.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;
}
