/* Hope Foundation - Custom CSS */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* CSS Variables */
:root {
  --primary-color: #d7263d;
  --secondary-color: #ff6b81;
  --dark-color: #2c3e50;
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --text-color: #333333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Custom Bootstrap Overrides */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #b91e32;
  border-color: #b91e32;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: var(--text-color) !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.donate-nav-btn {
  background-color: var(--primary-color);
  color: white !important;
  border-radius: 50px;
  padding: 8px 20px !important;
  margin-left: 10px;
  transition: var(--transition);
}

.donate-nav-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1601597111074-7d83e4bd2341?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white-color);
}

.hero-overlay {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.donate-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.donate-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: -1;
}

.donate-btn:hover::after {
  transform: translateX(0);
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Counter Section */
.counter-section {
  background-color: var(--white-color);
  padding: 60px 0;
}

.counter-item {
  text-align: center;
  padding: 20px;
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.counter-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  padding: 20px;
}

.mission-points {
  margin-top: 20px;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.mission-point i {
  margin-right: 15px;
  margin-top: 5px;
}

/* Campaign Cards */
.campaign-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.campaign-image {
  position: relative;
  overflow: hidden;
}

.campaign-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.campaign-card:hover .campaign-image img {
  transform: scale(1.05);
}

.campaign-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}

.campaign-category {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.campaign-content {
  padding: 20px;
}

.campaign-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.campaign-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.campaign-location i,
.campaign-urgency i {
  margin-right: 5px;
}

.campaign-urgency.urgent {
  color: var(--primary-color);
  font-weight: 500;
}

.progress-container {
  margin-bottom: 15px;
}

.progress {
  height: 8px;
  border-radius: 50px;
  background-color: #e9ecef;
  margin-bottom: 10px;
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: 50px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonial Cards */
.testimonial-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 0;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 60px 0;
  color: var(--white-color);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: #212529;
  color: var(--light-color);
  padding-top: 70px;
  padding-bottom: 20px;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--light-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  color: var(--primary-color);
}

.newsletter-form .input-group {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  padding: 12px 15px;
}

.newsletter-form .btn {
  padding: 0 15px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.copyright {
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  padding: 150px 0 80px;
  color: var(--white-color);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Page Styles */
.mvv-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-light);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.mvv-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(215, 38, 61, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 15px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white-color);
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.impact-section {
  padding: 60px 0;
}

.impact-item {
  text-align: center;
  padding: 20px;
}

.impact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.impact-label {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Campaigns Page Styles */
.filter-section {
  padding: 20px 0;
}

.campaign-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-btn {
  background-color: transparent;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

/* Donate Page Styles */
.donation-form-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-light);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.amount-btn {
  font-weight: 500;
  padding: 12px;
}

.payment-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  font-weight: 500;
}

.payment-btn i {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.donate-submit-btn {
  margin-top: 20px;
}

.donation-impact-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow-light);
}

.impact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.impact-subtitle {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.impact-examples {
  margin-bottom: 20px;
}

.impact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.impact-item:last-child {
  border-bottom: none;
}

.impact-amount {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  width: 80px;
}

.impact-description {
  display: flex;
  align-items: center;
}

.impact-description i {
  margin-right: 10px;
}

.security-info,
.tax-info {
  background-color: #f8f9fa;
  border-radius: var(--border-radius);
  padding: 15px;
}

.recent-donors-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow-light);
}

.donor-list {
  margin-top: 15px;
}

.donor-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.donor-item:last-child {
  border-bottom: none;
}

.donor-avatar {
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.donor-info {
  display: flex;
  flex-direction: column;
}

.donor-name {
  font-weight: 500;
}

.donor-amount {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.thank-you-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-light);
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.thank-you-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.thank-you-message {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-actions {
  margin-top: 20px;
}

.help-option-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow-light);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.help-option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.help-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.help-option-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Get Involved Page Styles */
.involvement-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-light);
  height: 100%;
  transition: var(--transition);
}

.involvement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.involvement-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.involvement-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.involvement-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.involvement-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.involvement-benefits li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.volunteer-form-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-light);
}

.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.event-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  display: flex;
  height: 100%;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.event-date {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 15px;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-content {
  padding: 20px;
  flex-grow: 1;
}

.event-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-location {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.event-location i {
  margin-right: 5px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-time i,
.event-volunteers i {
  margin-right: 5px;
}

.partner-logo {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* Gallery Page Styles */
.gallery-filters {
  padding: 20px 0;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.gallery-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  height: 100%;
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  color: var(--white-color);
  padding: 20px;
}

.gallery-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.story-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-light);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.story-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.story-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-info-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-light);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(215, 38, 61, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.contact-details h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-light);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  background-color: var(--white-color);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(215, 38, 61, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D7263D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  background-color: var(--white-color);
}

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

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .counter-number,
  .impact-number {
    font-size: 2rem;
  }

  .navbar-collapse {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-top: 15px;
  }

  .donate-nav-btn {
    margin: 10px 0 0;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .counter-number,
  .impact-number {
    font-size: 1.8rem;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    flex-direction: row;
    padding: 10px;
    width: 100%;
  }

  .event-day {
    margin-right: 10px;
  }
}

/* Animation Classes */
.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.glow-effect {
  box-shadow: 0 0 15px rgba(215, 38, 61, 0.5);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(215, 38, 61, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(215, 38, 61, 0.8);
  }
}
