#logo img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  /* line-height: 20; */
}

.helping-hand-area {
  padding: 80px 0;
}

.helping-hand-area .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
}

/* Left column */
.helping-hand-area .col-lg-6:first-child {
  flex: 1;
}

/* Right column */
.helping-hand-area .col-lg-6:last-child {
  flex: 1;
}

/* TEXT SIDE */
.helping-hand-text h2 {
  margin-bottom: 10px;
}

.helping-hand-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.helping-hand-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.helping-hand-text ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 5px;
}

.helping-hand-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* IMAGE SIDE */
.helping-hand-img {
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.helping-hand-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.helping-hand-area .row {
  gap: 10px;
  /* slightly wider breathing space */
  align-items: flex-start;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .helping-hand-area .row {
    flex-wrap: wrap;
    /* allow stacking on mobile */
  }

  .helping-hand-area .col-lg-6 {
    flex: 0 0 100%;
  }

  .helping-hand-text h2 {
    font-size: 32px;
  }
}

/* gallery */
.gallery-section {
  animation: fadeInUp 0.8s ease;
}

/* Gallery Images Same Height */
.gallery-section .img-fluid {
  width: 100%;
  height: 300px; /* Adjust as needed */
  object-fit: cover;
  display: block;
}

/* Optional: For video thumbnails */
.gallery-section video {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-link-area {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  /* responsive on mobile */
}

.filter-btn {
  letter-spacing: 1px;
  background: none;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--primary);
  border-width: 6px;
}

.filter-btn:hover {
  color: var(--primary);
  border-bottom: 1px solid #000;
  border-width: 6px;
}

/* animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* contact */
.luxury-title {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: glow 3s infinite alternate;
}

.single-contact-address {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.single-contact-address:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

#logo img {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  to {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  }
}

/* Home */
.banner-para {
  color: #ffc109;
}

/* Donation */
.donation-intro {
  padding: 100px 0;
  background: #fff;
}

.donation-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
}

.donation-intro p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #666;
}

.primary-btn01 {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000 !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  color: #000 !important;
}

.donation-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.donation-card i {
  color: #d4af37;
  margin-bottom: 20px;
}

.donation-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.donation-card p {
  color: #666;
  line-height: 1.8;
}

.donation-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.impact-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.impact-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.impact-card h3 {
  font-size: 42px;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 15px;
}

.impact-card p {
  color: #666;
  margin: 0;
}

.bank-box {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.bank-box h3 {
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

.bank-box p {
  color: #222;
  font-size: 16px;
  margin-bottom: 18px;
}

.bank-box strong {
  color: #000;
}

#donate-now img {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

#donate-now img:hover {
  transform: scale(1.05);
}

.thank-you-section {
  background: #fff;
  padding: 100px 0;
}

.thank-you-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.thank-you-section p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #666;
}

.container-donate {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
}

label {
  display: block;
  margin-top: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}

.donate-btn {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background-color: #0f0a82;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.donate-btn:hover {
  background-color: #0f0a82;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.donation-card,
.impact-card,
.bank-box {
  animation: fadeUp 0.8s ease;
}

@media (max-width: 768px) {
  .donation-intro h2 {
    font-size: 30px;
  }

  .impact-card h3 {
    font-size: 32px;
  }

  .bank-box {
    margin-top: 30px;
  }
}

/* Modal Background */
.donation-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal Box */
.donation-modal-content {
  background: #fff;
  width: 90%;
  max-width: 1000px;
  border-radius: 25px;
  padding: 50px;
  position: relative;
  animation: popup 0.4s ease;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  cursor: pointer;
  color: #333;
}

.close-modal:hover {
  color: red;
}

/* QR */
.qr-image {
  width: 280px;
  max-width: 100%;
  padding: 10px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Popup Animation */
@keyframes popup {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .donation-modal-content {
    padding: 25px;
  }
  .qr-image {
    width: 220px;
    margin-bottom: 30px;
  }
}

/* Section Container */
.resource-section {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Premium Card */
.resource-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 35px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 1px 8px rgba(255, 255, 255, 0.4) inset;
}

/* Gradient Top Border */
.resource-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4, #14b8a6);
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(79, 70, 229, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Heading */
.resource-card h2 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
}

.resource-card h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  margin-top: 10px;
  border-radius: 10px;
}

/* Paragraph */
.resource-card p {
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
}

/* Icon Badge */
.icon-badge {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .resource-card {
    padding: 25px;
  }

  .resource-card h2 {
    font-size: 1.5rem;
  }
}

/* about-school */
.vmv-section .card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vmv-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-section h2 {
  font-weight: 700;
}

.about-section p {
  color: #555;
  line-height: 1.7;
}
