body {
  font-family: "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

/* Brand */
.brand-text {
  color: purple;
  font-weight: bold;
}

/* Donate Button */
.btn-donate {
  background: orange;
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: bold;
}

.btn-donate:hover {
  background: purple;
}

/* HERO */
.hero-section {
  background: url("assets/banner.png") center/cover no-repeat;
  height: 90vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: yellow;
}

.hero-subtitle {
  color: white;
  font-size: 1.2rem;
}

.btn-hero {
  background: purple;
  color: white;
  border-radius: 30px;
  padding: 12px 25px;
}

.btn-hero:hover {
  background: orange;
}

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: purple;
}

/* Helping children */
.help-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 22px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  border-top: 5px solid #6c63ff;
}

.help-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.15rem;
}

.help-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.98rem;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}


/* Programs */
.program-card {
  padding: 25px;
  background: linear-gradient(to right, purple, blue);
  color: white;
  border-radius: 15px;
  font-weight: bold;
}

/* Footer */
.footer {
  background: purple;
  color: white;
  padding: 15px;
}

/* Fade Animation */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= CHATBOT ================= */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.chatbot-btn {
  background: purple;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
}

.chatbox {
  width: 300px;
  height: 380px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  position: absolute;
  bottom: 70px;
  right: 0;
  display: none;
  flex-direction: column;
}

.chat-header {
  background: orange;
  color: white;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

.bot-msg {
  background: #f1f1f1;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.user-msg {
  background: purple;
  color: white;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: right;
}

.chat-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}

.chat-input-area input {
  flex: 1;
  border: none;
  padding: 10px;
}

.chat-input-area button {
  background: orange;
  border: none;
  padding: 10px;
  color: white;
}


/* ================= CHATBOT ACTION BUTTONS ================= */

.chat-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  gap: 6px;
  border-top: 1px solid #ddd;
  background: #fff;
}

.chat-action-btn {
  flex: 1;
  padding: 8px;
  font-size: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25d366;
  color: white;
  text-decoration: none;
}

/* Donate */
.donate-btn {
  background: #ff9800;
  color: white;
}

/* New section */
.about-section {
  background: #fff;
}

.about-section .section-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-img {
  max-height: 520px;
  object-fit: cover;
}


/* Add All */
/* ================= GLOBAL FOOTER STYLING ================= */

.footer-global {
  background: linear-gradient(135deg, #2b0a3d, #5a189a);
  color: #fff;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-highlight {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffd166;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffd166;
  padding-left: 4px;
}

.footer-social {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s ease;
}

.footer-social:hover {
  color: #ffd166;
  transform: translateY(-3px);
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}


/* ================= GLOBAL HERO UPGRADE ================= */

.hero-section {
  min-height: 92vh;
  background: url("assets/banner.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(43, 10, 61, 0.88),
    rgba(90, 24, 154, 0.82)
  );
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 780px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.hero-badge {
  background: rgba(255, 209, 102, 0.15);
  border: 1px solid rgba(255, 209, 102, 0.35);
  color: #ffd166;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.4px;
}

.hero-buttons .btn {
  transition: 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-4px);
}

.hero-stats h3 {
  font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
}
