/* Core Variables */
:root {
  --primary-green: #00cc00;
  --dark-green: #008800;
  --light-green: #e9f7ef;
  --accent-green: #44cc44;
  --white: #fff;
  --gray: #f8f9fa;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius: 18px;
  --text-dark: #222;
  --text-light: #666;
  --stat-yellow: #ffd700;
  --box1-bg: linear-gradient(135deg, #e9f7ef 60%, #c6f7e2 100%);
  --box2-bg: linear-gradient(135deg, #f8f9fa 60%, #e0f7fa 100%);
  --box3-bg: linear-gradient(135deg, #f8f9fa 60%, #f7e9ef 100%);
}

.omdc-cofounder-bar {
  width: 100vw;
  background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 90px;
  position: relative;
  z-index: 2;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text-dark);
}

/* Combine all existing CSS from index.html style tag */
@import url("css/style.css");
@import url("css/style2.css");
@import url("css/headerFooter.css");
@import url("css/dashboard.css");
/* Section Specific Styles */
/* ...existing section specific styles... */

/* Animation Keyframes */
/* ...existing keyframes... */

/* Media Queries */
/* ...existing media queries... */
/* css/HeaderFooter.css */

/* Base styles and resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-green: #00cc00;
  /* RGB: 0, 204, 0 */
  --dark-green: #009900;
  --light-green: #e6ffe6;
  --dark-yellow: #ffcc00;
  --light-yellow: #fff9e6;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --vibrant-red: #e74c3c;
  --pink-heart: #ff69b4;
}

body {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 15px 0;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Enhanced Logo Flip Animation - Keep original size */
.logo-animation {
  perspective: 1000px;
  width: 150px !important;
  height: 150px !important;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: flipAnimation 4s infinite;
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.flip-back {
  transform: rotateY(180deg);
}

.flip-front img,
.flip-back img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

@keyframes flipAnimation {
  0% {
    transform: rotateY(0);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.logo-text h1 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 5px;
}

.logo-text h1 span {
  color: var(--primary-green);
}

.slogan-container {
  position: relative;
  height: 24px;
  overflow: hidden;
}

.slogan {
  position: absolute;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
  opacity: 0;
  animation: sloganChange 10s infinite;
}

.slogan1 {
  animation-delay: 0s;
}

.slogan2 {
  animation-delay: 5s;
}

@keyframes sloganChange {
  0%,
  40% {
    opacity: 0;
    transform: translateY(10px);
  }

  5%,
  35% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info {
  font-size: 1.05rem;
  color: var(--dark-green);
}

.contact-info p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}

/* Contact info positioning and styling */
.header .top-header .contact-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  margin-left: 5% !important; /* Reduced from 8% to 5% for more left alignment */
  padding-left: 0 !important;
  gap: 2px !important;
  white-space: normal !important;
}

.header .top-header .contact-info p {
  display: flex !important;
  align-items: center !important;
  margin: 0 0 4px 0 !important;
  white-space: nowrap !important;
  font-weight: bold !important;
  gap: 8px !important;
  font-size: 1rem !important;
  color: var(--dark-blue) !important;
}

.header .top-header .contact-info p i {
  font-size: 1.1rem !important;
  color: var(--primary-green) !important;
  width: 16px !important;
  text-align: center !important;
}

/* Social and Clock Area */
.social-clock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.2);
}

.social-icons a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: var(--dark-gray);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: bottom;
}

.social-icons a:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  animation: tooltipPulse 1.5s infinite;
}

@keyframes tooltipPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.facebook {
  background: #3b5998;
}

.twitter {
  background: #1da1f2;
}

.linkedin {
  background: #0077b5;
}

.youtube {
  background: #ff0000;
}

.instagram {
  background: #e1306c;
}

.whatsapp {
  background: #25d366;
}

.telegram {
  background: #0088cc;
}

.datetime {
  font-size: 0.95rem;
  display: flex;
  gap: 8px;
}

.donate-btn {
  background-color: var(--dark-yellow);
  color: var(--dark-gray);
  padding: 8px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

.donate-btn:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

/* Navigation Menu */
.main-menu {
  background-color: var(--primary-green);
  padding: 0;
}

.main-menu ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 4px;
}

.main-menu ul li {
  position: relative;
  flex: 1;
  text-align: center;
}

.main-menu ul li a {
  color: var(--white);
  text-decoration: none;
  padding: 15px 8px;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.95rem;
}

.main-menu ul li a:hover {
  background-color: var(--dark-green);
}

.main-menu ul li a i {
  margin-left: 5px;
  font-size: 0.8rem;
}

/* Dropdown styles */
.dropdown-content {
  position: absolute;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 0 0 6px 6px;
  padding: 5px 0;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  color: var(--white);
  padding: 10px 15px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background-color: var(--dark-green);
  padding-left: 18px;
}

/* Highlighted menu items */
.highlight a {
  color: var(--dark-gray) !important;
}

.highlight a:hover {
  background-color: #e6b800 !important;
}

.donate-menu,
.crowdfunding-menu {
  margin-right: 4px;
}

/* Blank section */
.blank-section {
  height: 300px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.blank-section::before {
  content: "Content Area";
  font-size: 2rem;
  color: var(--dark-gray);
  opacity: 0.2;
}

/* Footer Styles */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
}

.footer-top {
  padding: 20px 0 2px;
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 0;
}

.footer-col {
  padding: 0 5px;
  margin-bottom: 0;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-top: 12px;
}

.section-heading {
  color: var(--primary-green);
  animation: colorPulse 3s infinite alternate;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

@keyframes colorPulse {
  0% {
    color: var(--primary-green);
  }

  100% {
    color: var(--dark-yellow);
  }
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: block;
  padding: 3px 0;
}

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

.highlight {
  color: var(--dark-yellow) !important;
}

.footer-contact {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-contact p {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact i {
  margin-top: 4px;
  color: var(--primary-green);
  font-size: 1.1rem;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-form input,
.footer-form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: #444;
  color: var(--white);
}

.footer-form textarea {
  height: 90px;
  resize: vertical;
}

.form-buttons {
  display: flex;
  gap: 8px;
}

.send-btn,
.clear-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
}

.send-btn {
  background-color: var(--primary-green);
  color: var(--dark-gray);
}

.clear-btn {
  background-color: #666;
  color: var(--white);
}

.send-btn:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.clear-btn:hover {
  background-color: #777;
}

/* Form progress bar */
.form-progress {
  width: 100%;
  height: 4px;
  background: #444;
  border-radius: 2px;
  overflow: hidden;
}

.form-progress .progress-bar {
  height: 100%;
  background: var(--primary-green);
  width: 0%;
  transition: width 0.4s ease;
}

.footer-donate {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #222;
  border-radius: 8px;
}

.mission-slogan p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-green);
}

.animated-text {
  font-size: 1.3rem !important;
  animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px rgba(0, 204, 0, 0.5);
  }

  100% {
    text-shadow: 0 0 15px rgba(0, 204, 0, 0.8), 0 0 25px rgba(0, 204, 0, 0.6);
  }
}

.footer-bottom {
  background-color: #111;
  padding: 12px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.95rem;
  color: #999;
}

.copyright a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--primary-green);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.2);
}

/* Tooltip for footer social icons */
.footer-social a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: var(--dark-gray);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: bottom;
}

.footer-social a:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  animation: tooltipPulse 1.5s infinite;
}

/* Progress bar styles */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
  display: none;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary-green);
  transition: width 0.4s ease;
}

/* ===== FEEDBACK SECTION STYLES ===== */
.feedback-section {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  padding: 40px 0 0 0;
  width: 95vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.feedback-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.feedback-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2%;
}
.feedback-header {
  text-align: center;
  margin-bottom: 40px;
}
.feedback-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 10px;
  animation: titleGlow 3s ease-in-out infinite alternate;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  letter-spacing: 2px;
}
.feedback-slogan {
  font-size: 1.4rem;
  color: #e6e6fa;
  font-weight: 600;
  animation: sloganFloat 4s ease-in-out infinite;
}
.carousel-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  height: 280px;
  border-radius: 15px;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
  will-change: transform;
}
.feedback-item {
  min-width: 25%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin: 0 10px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
  transform: translateZ(0);
}
.feedback-item:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}
.feedback-item .avatar {
  flex-shrink: 0;
}
.feedback-item .avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.feedback-content {
  flex: 1;
}
.feedback-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 12px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feedback-author {
  font-weight: 600;
  color: #00cc00;
  font-size: 0.95rem;
}
.feedback-author .author-name {
  color: #ff6b35;
  font-weight: 700;
}
.feedback-author .author-location {
  color: #2e86c1;
  font-weight: 600;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 204, 0, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.nav-btn:hover {
  background: #00cc00;
  transform: translateY(-50%) scale(1.1);
}
.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}
.indicator-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.indicator-dots .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.indicator-dots .dot.active {
  background: #ffd700;
  transform: scale(1.3);
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-container {
    justify-content: center;
  }

  .contact-info {
    justify-content: center;
  }

  .social-clock {
    align-items: center;
  }

  .main-menu ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-donate {
    flex-direction: column;
    gap: 15px;
  }

  .main-menu ul li {
    width: 50%;
    text-align: center;
  }

  .dropdown-content {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }
}

@media (max-width: 576px) {
  .main-menu ul li {
    width: 100%;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
  }
}

/* Add new color variable */
:root {
  --dark-blue: #00008b;
}

/* Logo size increase */
.logo-animation {
  width: 150px;
  height: 150px;
}

/* Organization name styling */
.org-name {
  color: var(--primary-green);
  font-weight: bold;
  font-size: 28px;
}

.org-acronym {
  color: red;
}

/* Slogan color */
.slogan {
  color: var(--dark-yellow);
  font-size: 16px;
}

/* Contact info styling */
.contact-info p {
  color: var(--dark-blue);
  font-weight: normal;
}

/* Date/time styling */
.datetime span {
  color: var(--dark-blue) !important;
}

/* Tooltip positioning */
.social-icons a::after {
  top: 125%;
  bottom: auto;
  transform: translateX(-50%);
  transform-origin: top center;
}

/* Standard dropdown background */
.dropdown-content {
  background-color: var(--primary-green) !important;
}

/* Footer adjustments */
.footer-form textarea {
  height: 120px;
}

/* Container width adjustment */
.container {
  width: 95%;
  max-width: 100%;
  margin: 0 auto;
}

/* Increase the textarea height to match the image size */
.footer-form textarea {
  height: 140px;
  /* Increased from 90px */
}

/* Adjust the form layout to accommodate larger image */
.form-image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  margin-top: 15px;
  border-radius: 8px;
}

/* Make the form buttons more prominent */
.form-buttons {
  margin-top: 10px;
}

/* Adjust the form progress bar position */
.form-progress {
  margin-top: 15px;
}

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

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #f0f2f5;
}

/* HERO SLIDER: Reduce height by 30% */
.hero-slider {
  height: 50vh; /* originally 60vh */
  overflow: hidden;
  display: flex;
}
.hero-slider .slide {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 8s linear;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-content {
  left: 0;
  right: auto;
  width: 65%;
  text-align: left;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
  padding: 40px;
  position: absolute;
  bottom: 0;
  max-width: 800px;
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.slide p {
  font-size: 1.4rem;
  margin-bottom: 35px;
  max-width: 700px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  color: #f0f0f0;
  margin-left: auto;
}

.slide-buttons {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  justify-content: flex-end;
}

.btn {
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.donate-btn {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: white;
}

.donate-btn:hover {
  background: linear-gradient(45deg, #ffa500, #ffd700);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  transform: translateY(-5px) scale(1.05);
}

.read-btn {
  background: linear-gradient(45deg, #32cd32, #228b22);
  color: white;
  border: none;
}

.read-btn:hover {
  background: linear-gradient(45deg, #228b22, #32cd32);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.5);
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0 20px;
}

.slider-arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  opacity: 0.85;
}

.slider-arrow:hover {
  background: rgba(218, 165, 32, 0.4);
  transform: scale(1.15);
  opacity: 1;
  border-color: rgba(255, 215, 0, 0.6);
}

.slider-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.dot:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffd700;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}

.dot:hover {
  transform: scale(1.4);
  background: rgba(255, 215, 0, 0.4);
}

.dot.active {
  transform: scale(1.5);
  background: transparent;
  box-shadow: 0 0 0 3px #ffd700;
}

.dot.active:after {
  transform: translate(-50%, -50%) scale(1);
}

.sound-control {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 10;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.sound-control:hover {
  background: rgba(218, 165, 32, 0.3);
  transform: scale(1.1);
}

.sound-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

.sound-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.5);
  animation: soundWave 1.5s infinite;
  opacity: 0;
}

.sound-wave:nth-child(2) {
  animation-delay: 0.5s;
}

.sound-wave:nth-child(3) {
  animation-delay: 1s;
}

@keyframes soundWave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Animation Delays for Content */
.slide-content h2 {
  animation-delay: 0.3s !important;
}

.slide-content p {
  animation-delay: 0.6s !important;
}

.slide-buttons .donate-btn {
  animation-delay: 0.9s !important;
}

.slide-buttons .read-btn {
  animation-delay: 1.1s !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .slide-content {
    width: 75%;
  }
}

@media (max-width: 992px) {
  .slide-content {
    width: 85%;
    padding: 30px;
  }

  .slide h2 {
    font-size: 2.5rem;
  }

  .slide p {
    font-size: 1.2rem;
  }

  .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  .slider-arrow {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }

  .slide-content {
    width: 90%;
    padding: 25px;
  }

  .slide h2 {
    font-size: 2rem;
  }

  .slide p {
    font-size: 1.1rem;
  }

  slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .sound-control {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .slide-content {
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    text-align: center;
  }

  .slide h2 {
    font-size: 1.8rem;
  }

  .slide p {
    font-size: 1rem;
    margin-left: 0;
  }

  .slide-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn {
    width: 80%;
    max-width: 300px;
  }

  .slider-nav {
    gap: 10px;
    bottom: 15px;
  }

  .dot {
    width: 20px;
    height: 20px;
  }

  .sound-control {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Add this to your style.css */
.slider-controls .slider-arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-container:hover .slider-controls .slider-arrow {
  opacity: 0.85;
}

.slide-buttons {
  justify-content: flex-start !important;
  /* Force left alignment */
  margin-left: 0;
  padding-left: 0;
}

/* Fix mobile alignment */
@media (max-width: 576px) {
  .slide-buttons {
    align-items: flex-start !important;
  }
}

/* Add this to your style.css */
.slide-buttons .btn {
  animation: none !important;
}

/* --- HeaderFooter.css --- */

/* --- style2.css --- */

/* --- original style.css --- */

/* Dashboard Quick Cards Styles */
.dashboard-quick-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 40px auto 30px auto;
  max-width: 1200px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  padding: 24px 16px;
}

.quick-card {
  background: linear-gradient(135deg, #e9f7ef 0%, #d4efdf 100%);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 120px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  border: 2px solid #e0f2e9;
  text-align: center;
}

.quick-card:hover {
  box-shadow: 0 8px 24px rgba(0, 204, 0, 0.13);
  background: linear-gradient(135deg, #d4efdf 0%, #b2f7c1 100%);
  transform: translateY(-4px) scale(1.04);
  border-color: #00cc00;
}

.quick-card-icon {
  font-size: 2.2rem;
  color: #00cc00;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.quick-card:hover .quick-card-icon {
  color: #008800;
}

.quick-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .dashboard-quick-cards {
    gap: 16px;
    padding: 18px 6px;
  }

  .quick-card {
    width: 100px;
    height: 110px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .dashboard-quick-cards {
    gap: 10px;
    padding: 10px 2px;
  }

  .quick-card {
    width: 80px;
    height: 90px;
    font-size: 0.9rem;
  }

  .quick-card-icon {
    font-size: 1.5rem;
    margin-bottom: 7px;
  }

  .quick-card-title {
    font-size: 0.92rem;
  }
}

/* Crowdfunding Section Styles */
.crowdfunding-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.crowdfunding-section .section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.crowdfunding-section .causes-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: repeat(2, 1fr) !important;
  gap: 15px !important;
  width: 98% !important;
  max-width: 98vw !important;
  margin: 0 auto !important;
  align-items: stretch !important;
  justify-items: stretch !important;
  box-sizing: border-box !important;
}

/* Increase box and image height */
.crowdfunding-section .cause-box {
  min-height: 650px !important;
  max-height: none !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.18) !important;
  overflow: hidden !important;
  transition: box-shadow 0.3s, transform 0.3s !important;
}

.crowdfunding-section .cause-image {
  height: 200px !important;
  min-height: 200px !important;
  max-height: 200px !important;
  overflow: hidden !important;
  position: relative !important;
}

.crowdfunding-section .cause-content {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  flex-grow: 1 !important;
  justify-content: space-between !important;
}

.crowdfunding-section .cause-description {
  font-size: 1rem !important;
  color: #666 !important;
  line-height: 1.5 !important;
  margin-bottom: 15px !important;
  text-align: justify !important;
  flex-grow: 1 !important;
}

.crowdfunding-section .progress-section {
  margin: 15px 0 !important;
  background: rgba(248, 248, 248, 0.95) !important;
  padding: 15px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
}

.crowdfunding-section .progress-info {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 10px !important;
}

.crowdfunding-section .amount-raised,
.crowdfunding-section .amount-goal {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #00cc00 !important;
  background: rgba(0, 204, 0, 0.1) !important;
  padding: 6px 12px !important;
  border-radius: 15px !important;
  border: 2px solid rgba(0, 204, 0, 0.3) !important;
}

.crowdfunding-section .progress-bar {
  background: #e9ecef !important;
  height: 15px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 10px !important;
  border: 2px solid rgba(255, 215, 0, 0.4) !important;
}

.crowdfunding-section .progress-percentage {
  text-align: center !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #00cc00 !important;
  background: rgba(0, 204, 0, 0.1) !important;
  padding: 8px 15px !important;
  border-radius: 15px !important;
  border: 2px solid rgba(0, 204, 0, 0.3) !important;
}

.crowdfunding-section .support-btn {
  margin-top: auto !important;
  padding: 12px 25px !important;
  border-radius: 25px !important;
  background: linear-gradient(45deg, #00cc00, #44cc44) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

/* ===== FEEDBACK SECTION REDUCED STYLES ===== */
.feedback-section .carousel-container {
  height: 220px !important;
}

.feedback-section .feedback-item {
  min-width: 25% !important;
  padding: 20px !important;
  gap: 12px !important;
}

.feedback-section .feedback-item .avatar img {
  width: 60px !important;
  height: 60px !important;
}

.feedback-section .feedback-text {
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  margin-bottom: 10px !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
}

.feedback-section .feedback-author {
  font-size: 0.85rem !important;
}

.feedback-section .feedback-author .author-name {
  color: #ff6b35 !important;
  font-weight: 700 !important;
}

.feedback-section .feedback-author .author-location {
  color: #2e86c1 !important;
  font-weight: 600 !important;
}

/* ===== UPDATES SECTION ENHANCED STYLES ===== */
.updates-section {
  padding: 20px 0 0 0 !important;
}

.updates-section .content-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: repeat(3, 1fr) !important;
  gap: 15px !important;
}

.updates-section .box {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 15px !important;
  padding: 15px !important;
  border: 2px solid rgba(255, 215, 0, 0.2) !important;
  min-height: 280px !important;
  max-height: 280px !important;
  display: flex !important;
  flex-direction: column !important;
}

.updates-section .image-container {
  height: 120px !important;
  margin-bottom: 10px !important;
}

.updates-section .box-header {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 0px !important;
}

.updates-section .date-icon {
  font-size: 1.2rem !important;
  animation: iconBounce 2s ease-in-out infinite !important;
}

.updates-section .month {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #ffd700 !important;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5) !important;
  animation: monthGlow 3s ease-in-out infinite alternate !important;
}

.updates-section .box-title {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin-bottom: 0px !important;
  color: #ff6b35 !important;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3) !important;
  animation: titlePulse 2.5s ease-in-out infinite alternate !important;
}

.updates-section .box-content {
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.4 !important;
  text-align: justify !important;
  font-size: 0.9rem !important;
  flex-grow: 1 !important;
  margin-top: 8px !important;
}

@keyframes monthGlow {
  0% {
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
  }
  100% {
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.8);
  }
}

@keyframes titlePulse {
  0% {
    transform: scale(1);
    color: #ff6b35;
  }
  100% {
    transform: scale(1.02);
    color: #ffd700;
  }
}

/* ===== FOOTER COMPACT STYLES ===== */
.footer-bottom {
  padding: 15px 0 !important;
}

.footer-support-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 10px !important;
  padding: 0 !important;
}

.footer-support-row .mission-slogan {
  margin: 0 !important;
}

.footer-support-row .animated-text {
  font-size: 1.2rem !important;
  color: var(--primary-green) !important;
  font-weight: 600 !important;
}

.footer-support-btn {
  background: linear-gradient(45deg, #ffd700, #ffa500) !important;
  color: #000 !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3) !important;
}

.footer-support-btn:hover {
  background: linear-gradient(45deg, #ffa500, #ffd700) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5) !important;
}

.footer-credits-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-credits-row .copyright {
  font-size: 0.9rem !important;
  color: #999 !important;
  margin: 0 !important;
}

.footer-credits-row .footer-social {
  display: flex !important;
  gap: 8px !important;
  margin: 0 !important;
}

/* Enhanced Footer Link Hover Effects */
.footer-bottom .copyright a {
  color: #ff9800;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom .copyright a:hover {
  color: #ffb300;
  text-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
  transform: translateY(-1px);
}

.footer-bottom .copyright a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9800, #ffb300);
  transition: width 0.3s ease;
}

.footer-bottom .copyright a:hover::after {
  width: 100%;
}

/* Footer Social Media Hover Effects */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 152, 0, 0.1);
  border: 2px solid rgba(255, 152, 0, 0.3);
  border-radius: 50%;
  color: #ff9800;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255, 152, 0, 0.2);
  border-color: #ff9800;
  color: #ffb300;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Remove gaps and ensure tight layout */
.footer-slogan-section {
  margin-bottom: 0 !important;
  padding-bottom: 25px !important;
}

.footer-bottom {
  margin-top: 0 !important;
  padding-top: 15px !important;
  border-top: 1px solid rgba(255, 152, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-bottom .container > div {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom .copyright {
    text-align: center;
    font-size: 0.9rem;
  }
  .footer-social {
    justify-content: center;
  }
}

/* Enhanced animations for bigger footer slogan */
@keyframes bigTextShimmer {
  0% {
    background-position: -200% center;
    transform: scale(1);
  }
  50% {
    background-position: 200% center;
    transform: scale(1.02);
  }
  100% {
    background-position: -200% center;
    transform: scale(1);
  }
}

@keyframes textPulse {
  0% {
    text-shadow: 0 5px 20px rgba(255, 152, 0, 0.5);
    letter-spacing: 2px;
  }
  100% {
    text-shadow: 0 8px 30px rgba(255, 152, 0, 0.8),
      0 0 50px rgba(255, 152, 0, 0.4);
    letter-spacing: 2.5px;
  }
}
/* OUR PRINCIPLES: Reduce width by 25% */
.our-principles .principles-container {
  width: 60%;
  margin: 0 auto;
}

/* NEWS & MEDIA POPUP IMAGE: Auto size with increased height */
#popup-image {
  width: auto;
  max-width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* CROWDFUNDING IMAGE HEIGHT + NO GAP */
.crowdfunding-section .cause-image img {
  width: 100% !important;
  height: 336px !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto !important;
  border-radius: 0 0 18px 18px !important;
}

.crowdfunding-section .cause-content {
  gap: 0;
  margin: 0;
}
.crowdfunding-section .cause-description,
.crowdfunding-section .progress-section {
  margin: 0;
  padding: 0;
}

/* Enhanced heartbeat animation */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Crowdfunding Slogan - Force dark yellow font color */
.crowdfunding-section .slogan {
  color: #ffd700 !important;
}
