/* Main Styles for GYANI JAIL SINGH RASHTRIYA SHIKSHA SAMITI */

:root {
  --primary: #0d6efd;
  --secondary: #00b4d8;
  --accent: #ff9e00;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #28a745;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: #444;
  background-color: #fafafa;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--dark);
}

.top-strip {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 5px 0;
  font-size: 14px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
}

.top-strip a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
  margin: 0 5px;
}

.top-strip a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.logo-section {
  text-align: center;
  padding: 30px 0;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
}

.logo-text {
  margin-left: 30px;
  text-align: left;
}

.logo-img:hover {
  transform: scale(1.05) rotate(5deg);
  border-color: var(--accent);
  color: var(--secondary);
}

.org-name {
  font-weight: 800;
  font-size: 32px;
  color: var(--primary);
  margin: 15px 0 5px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hindi-name {
  font-size: 22px;
  color: var(--secondary);
  margin: 5px 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.reg-no {
  font-size: 16px;
  color: #666;
  font-weight: 600;
  background: #f0f5ff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  margin-top: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  background: linear-gradient(90deg, #2c3e50, #34495e) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  position: relative;
  z-index: 99;
}

.navbar-nav .nav-link {
  margin: 0 15px;
  font-weight: 600;
  color: white !important;
  position: relative;
  padding: 12px 0;
  transition: var(--transition);
  border-radius: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
  color: white;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gradient:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
  color: white;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}

.btn-gradient:hover::before {
  left: 100%;
}

.slider {
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.carousel-item {
  height: 600px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(5px);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-caption h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
  font-size: 1.3rem;
  color: #f0f0f0;
  text-align: justify;
}

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-size: 2.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.about-section {
  padding: 90px 0;
  background: white;
}

.about-content {
  padding: 40px;
  background: #f8fbff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: justify;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: var(--transition);
  padding: 15px 10px;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Team row with proper spacing for 4 cards in one row */
.team-row {
  --bs-gutter-x: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.team-row .team-member {
  flex: 0 0 calc(25% - 1rem);
  max-width: calc(25% - 1rem);
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-photo-container {
  display: inline-block;
  padding: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.member-photo {
  width: 150px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid white;
  transition: var(--transition);
}

.team-member:hover .member-photo {
  border-color: var(--accent);
  transform: scale(1.05);
}

.member-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.member-role {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.member-desc {
  text-align: justify;
  font-size: 0.95rem;
  color: #666;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary);
}

.service-content {
  padding: 30px;
}

.service-content h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-content p {
  text-align: justify;
  margin-bottom: 25px;
  color: #555;
}

.gallery-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f0f5ff, #e6f0ff);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 280px;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.gallery-overlay i {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.footer {
  background: linear-gradient(135deg, #0d6efd, #00b4d8);
  color: white;
  padding: 70px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #ff6b00);
}

.footer h5 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.footer a {
  color: #e0e0e0;
  text-decoration: none;
  transition: var(--transition);
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}

.footer a:hover {
  color: white;
  transform: translateX(8px);
}

.footer-contact i {
  margin-right: 12px;
  color: var(--accent);
  width: 25px;
  text-align: center;
}

.footer h6 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #e0e0e0 !important;
  text-decoration: none !important;
  transition: var(--transition);
  margin-bottom: 8px;
  font-size: 14px !important;
}

.footer-links a:hover {
  color: var(--accent) !important;
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
  color: var(--accent);
}

.copyright-strip {
  background: #0a58ca;
  color: white;
  text-align: center;
  padding: 25px 0;
  margin-top: 50px;
  font-weight: 500;
}

.copyright-strip a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 8px;
  transition: var(--transition);
  color: white;
  font-size: 18px;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 158, 0, 0.4);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }

  .carousel-item {
    height: 500px;
  }

  .carousel-caption h3 {
    font-size: 2.2rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center !important;
  }

  .top-strip {
    padding: 8px 0;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .carousel-item {
    height: 400px;
  }

  .carousel-caption {
    padding: 25px;
    margin: 0 20px;
  }

  .carousel-caption h3 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .org-name {
    font-size: 26px;
  }

  .hindi-name {
    font-size: 20px;
  }

  .reg-no {
    font-size: 14px;
  }

  .navbar-nav .nav-link {
    margin: 8px 0;
    padding: 10px 0;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    padding: 25px;
  }

  .member-photo {
    width: 150px;
    height: 180px;
  }

  .logo-container {
    justify-content: center;
    flex-direction: column;
  }

  .logo-text {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }

  .logo-img {
    margin-bottom: 0;
  }

  .team-member {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .team-row .team-member {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 300px;
  }

  .carousel-caption {
    padding: 15px;
  }

  .carousel-caption h3 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-gradient {
    padding: 12px 25px;
    font-size: 15px;
  }

  .gallery-item {
    height: 220px;
  }
}

/* Quick Actions Section Styles */
html {
  scroll-behavior: smooth;
}

.navbar-nav .nav-link {
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-2px);
}

.quick-actions-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 60px 0;
}

.action-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
}

.action-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.gradient-primary .action-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-secondary .action-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-accent .action-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-success .action-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.action-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.action-card p {
  color: #f8f9fa;
  margin-bottom: 25px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.action-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c3e50;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #1a252f;
}

.gradient-primary {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.9) 100%
  );
  backdrop-filter: blur(10px);
}

.gradient-secondary {
  background: linear-gradient(
    135deg,
    rgba(240, 147, 251, 0.9) 0%,
    rgba(245, 87, 108, 0.9) 100%
  );
  backdrop-filter: blur(10px);
}

.gradient-accent {
  background: linear-gradient(
    135deg,
    rgba(79, 172, 254, 0.9) 0%,
    rgba(0, 242, 254, 0.9) 100%
  );
  backdrop-filter: blur(10px);
}

.gradient-success {
  background: linear-gradient(
    135deg,
    rgba(67, 233, 123, 0.9) 0%,
    rgba(56, 249, 215, 0.9) 100%
  );
  backdrop-filter: blur(10px);
}

.gradient-primary .action-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-secondary .action-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-accent .action-btn {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-success .action-btn {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

@media (max-width: 768px) {
  .quick-actions-section {
    padding: 40px 0;
  }

  .action-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .action-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }

  .action-card h4 {
    font-size: 1.3rem;
  }
}

/* Donation Section Styles */
.donation-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.donation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.donation-section .section-title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.donation-section .lead {
  color: #f8f9fa;
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.quotes-container {
  position: relative;
  z-index: 2;
}

.quote-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.quote-card .blockquote {
  margin-bottom: 20px;
  color: white;
  border-left: none;
  text-align: center;
}

.quote-card .blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 10px;
}

.quote-card .hindi-quote p {
  font-family: "Arial Unicode MS", "Nirmala UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.quote-card .blockquote-footer {
  color: #ffd700;
  font-weight: 600;
  text-align: center;
  font-style: normal;
}

.impact-stats {
  position: relative;
  z-index: 2;
}

.impact-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-text {
  color: #f8f9fa;
  font-size: 0.95rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.donate-button-container {
  position: relative;
  z-index: 2;
}

.btn-donate-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #2c3e50;
  border: none;
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-donate-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
  color: #1a252f;
}

.btn-donate-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-donate-primary:hover::before {
  left: 100%;
}

.donate-button-container p {
  color: #f8f9fa;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .donation-section {
    padding: 40px 0;
  }

  .quote-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .impact-number {
    font-size: 2rem;
  }

  .btn-donate-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}

/* Mobile Donate Button Styles */
.mobile-donate-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #2c3e50;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mobile-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
  color: #1a252f;
}

.mobile-donate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.mobile-donate-btn:hover::before {
  left: 100%;
}

.mobile-donate-btn i {
  font-size: 12px;
}
