/* 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 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-left p {
  margin: 0;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 5px;
  font-weight: 500;
  font-size: 14px;
}

.top-left span {
  color: #000;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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;
}

.social-icon a:hover {
  color: #ff5a00;
}
/* HEADER-SECTION */
.header-sec {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}

.hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}
.mobile-menu {
  display: none;
}

.header-sec .menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
  z-index: 999;
}

.header-sec .menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.header-sec .menu a:hover {
  color: #ff5a00;
}

.header-sec button {
  padding: 10px 20px;
  border: none;
  background: linear-gradient(90deg, #ff7400 28.12%, #f91717);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(249, 23, 23, 0.3);
}

.header-sec button:hover {
  background: linear-gradient(90deg, #e65f00 28.12%, #d11414);
  transform: translateY(-2px);
}

/* HERO-SECTION */

.hero-sec {
  padding: 80px 0;
  background: var(--color-bg);
}

.hero-left h6 {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-left h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-heading);
  margin-bottom: 20px;
}

.hero-left p {
  color: var(--color-text);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 480px;
}
.hero-btns a {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-orange {
  background: linear-gradient(90deg, #ff7400 28.12%, #f91717);
  color: #fff;
}

.hero-btns a:hover {
  background: linear-gradient(90deg, #e65f00 28.12%, #d11414);
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  margin-left: 12px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-box {
  position: absolute;
  background: var(--color-secondary-bg);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  width: 220px;
  transition: 0.3s;
}

.hero-box h4 {
  color: var(--color-heading);
  font-size: 15px;
  font-weight: 700;
}

.hero-box p {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  margin: 5px 0;
}

.hero-box span {
  font-size: 13px;
  color: var(--color-span);
}

.box1 {
  top: -40px;
  right: -40px;
}

.box2 {
  bottom: -40px;
  left: -40px;
}

.stat-circle {
  position: absolute;
  top: 30%;
  left: -70px;
  background: var(--color-primary);
  color: var(--color-bg);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(255, 116, 0, 0.3);
}

.stat-circle h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.stat-circle p {
  font-size: 13px;
  margin: 0;
}
/* 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;
}
/* IMPACT-SECTION */
.impact-section {
  background: #fffaf3;
  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;
}

/* EVENTS-SECTION */
.events-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}
.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;
}

.events-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.event-card {
  position: relative;
  width: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.event-img {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}
.event-card:hover .event-img img {
  transform: scale(1.08);
}

.event-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.event-content {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  z-index: 2;
  text-align: left;
  color: #fff;
}

.event-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 14px;
  color: #ddd;
}

.event-meta i {
  color: var(--color-primary);
  margin-right: 5px;
}

.event-card .event-img .event-category:last-child {
  display: none;
}

.event-card:hover .event-img .event-category:last-child {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* TESTIOMONIAL-SECTION */

.testimonial-sec {
  padding: 80px 0;
  background: var(--color-bg);
  text-align: center;
}

.testimonial-sec h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 40px;
  color: var(--color-heading);
}

.testimonial-header {
  margin-bottom: 40px;
}

.testimonial-tabs {
  display: inline-flex;
  gap: 40px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.testimonial-tabs li {
  list-style: none;
  font-weight: 600;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.testimonial-tabs li.active {
  color: var(--color-primary);
}

.testimonial-tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.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: #4a2b8a;
}

.testimonial-card .designation {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-card .quote {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-top: 20px;
  text-align: left;
}

.testimonial-card .quote::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 24px;
  height: 24px;
  background: url("../asset/quote-mark.png") no-repeat center center;
  background-size: contain;
  opacity: 0.5;
}

.testimonial-card .quote::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: url("../asset/quote-mark.png") no-repeat center center;
  background-size: contain;
  transform: rotate(180deg);
  opacity: 0.5;
}

.testimonial-content {
  display: none;
}

.testimonial-content.active {
  display: block;
}
/* FOOTER-SECTION */
.footer-sec {
  background-color: #1e1e1e;
  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: #f36f21;
}

.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 {
  font-size: 15px;
  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: #f36f21;
  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;
}
/* OUR-TEAM-SEC */
.our-team {
  padding: 80px 0px;
}
.team-head h2 {
  font-size: 2.125rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  position: relative;
  text-align: center;
}
.team-head h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f36f21;
  margin: 15px auto 0;
  border-radius: 2px;
}
.team-member h2 {
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
}

.team-member p {
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #777;
}
.team-member {
  margin-bottom: 30px;
}
.team-img img {
  height: 246px;
  width: 246px;
  filter: grayscale(1);
  transition: filter 0.4s ease;
  object-fit: cover;
}

.team-img img:hover {
  filter: grayscale(0);
}
.final-text {
  text-align: center;
}
/* 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: 20px;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  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, #ff7400 28.12%, #f91717);
  box-shadow: 0 4px 10px rgba(249, 23, 23, 0.3);
}
/* 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-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-heading);
  transition: color 0.3s ease;
}

.blog-info h3:hover {
  color: var(--color-accent);
}

.blog-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--color-text);
}

.blog-meta {
  margin-bottom: 8px;
}

.blog-meta span {
  color: rgba(51, 51, 51, 0.6);
  font-size: 14px;
  font-weight: 400;
}

.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);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  padding: 15px;
  transition: all 0.4s;
}

.gallery-item:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

.overlay h3 {
  margin: 0 0 5px;
  font-size: 1.3rem;
}

.overlay span {
  font-size: 0.9rem;
}

.overlay i {
  margin-right: 5px;
  color: var(--color-primary);
}
/* 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-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, #ff7400 28.12%, #f91717);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #e65f00 28.12%, #d11414);
  transform: translateY(-2px);
}
/* DONATE-SEC */
.donate-sec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  /* margin-bottom: 40px; */
}

.tab-buttons button {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  color: var(--color-heading);
  border: 1px solid #000;
  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.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(229, 148, 18, 0.1);
  border-bottom: 3px solid var(--color-primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.campaign-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-card {
  background-image: url("../asset/button-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 260px;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  padding: 12px 20px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3ms ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.stat-card h4 {
  font-size: 18px;
  color: var(--color-bg) !important;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 24px;
  color: var(--color-bg) !important;
  font-weight: 700;
}
.top-doners {
  margin-top: 40px;
}
.donor-box {
  background-color: rgba(229, 148, 18, 0.1);
  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,
.general-sec {
  margin-bottom: 40px;
}
.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;
}

.donate-form form {
  max-width: 500px;
  margin: auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-primary);
  box-shadow: 0 4px 15px rgba(255, 116, 0, 0.15);
}
.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 0 6px rgba(255, 116, 0, 0.3);
  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, #ff7400 28.12%, #f91717);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(249, 23, 23, 0.3);
}

.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-card {
  padding: 15px;
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 30px auto;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.share-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.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;
}
.choose-amount-sec {
  padding: 30px 0;
}

.donation-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.donation-box {
  position: relative;
  background: #f1f1f1;
  color: var(--color-primary) !important;

  font-weight: 600;
  border-radius: 8px;
  padding: 10px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.donation-box input[type="radio"] {
  accent-color: var(--color-primary);
  transform: scale(1.2);
  cursor: pointer;
}

.donation-box.active,
.donation-box:hover {
  color: #ffff !important;
  background-color: var(--color-primary) !important;
}

.donation-box.active input[type="radio"] {
  accent-color: #fff;
}

.donation-box::before,
.donation-box::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.donation-box::before {
  left: -6px;
}

.donation-box::after {
  right: -6px;
}

.donate-input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

input[name="otheramount"] {
  padding: 12px 20px;
  width: 250px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
}

/* 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;
}
body {
  background: #f8f9fa;
  font-family: "Poppins", sans-serif;
}

.leaderboard {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.leader-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.rank-circle {
  position: absolute;
  left: -25px;
  width: 50px;
  height: 50px;
  background: #fbc02d;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.leader-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  margin-left: 50px;
}

.leader-content img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.leader-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.leader-info p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #777;
}

.reward-box {
  background: linear-gradient(90deg, #f9d976, #f39f86);
  padding: 18px 28px;
  border-radius: 10px;
  color: #fff;
  text-align: right;
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.reward-box span {
  font-size: 13px;
  opacity: 0.9;
}

.reward-box h4 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 700;
}

/* Gold gradient top bar edge like your screenshot */
.gold {
  border: 1px solid #f9d976;
  background: linear-gradient(90deg, #fff 80%, rgba(249,217,118,0.4));
}
